gpeSetGridValue
gpeSetGridValue(g_tableView[g_location]S_value[s_type] ) => t / nil
Description
Sets the value of the Grid Pattern Editor table view cells. If there is a single cell selected before the call, the next cell will be selected automatically.
Arguments
Value Returned
|
The value of the Grid Pattern Editor table view cells was set. |
|
|
The value of the Grid Pattern Editor table view cells could not be set. |
Example
Sets the current selected cells to a value of A:
getSridValue(dwindow('gpeGridAsst_1)->tableView "A")
Clears all cells in the grid or table and sets them all to " ":
setGridValue(dwindow('gpeGridAsst_1)->tableView t " ")
Sets the cell orientation at row 1, column 2 to R90. Returns nil if row 1, column 2 is empty:
setGridValue(dwindow('gpeGridAsst_1)->tableView 1:2 "R90" 'orient)
Sets the orientation of all cells with symbol A to mirror-on-X-axis (MX):
setGridValue(dwindow('gpeGridAsst_1)->tableView '(symbol "A") "MX" 'orient)
Return to top