gpeGetGridValue
gpeGetGridValue(g_tableView[g_location] [s_type] ) =>grid_value
Description
Returns the value of the cells in the Grid Pattern Editor table view.
Arguments
|
A symbol indicating the type of value to retrieve. If unspecified, then the current display value is used. Valid values are |
Value Returned
Examples
Returns the displayed value of the grid cells currently selected:
getGridValue(dwindow('gpeGridAsst_1)->tableView)
Returns the displayed values of all the cells in the grid, arranged as a list of one list per row:
getGridValue(dwindow('gpeGridAsst_1)->tableView t)
Returns the orientation of the cell at row 1, column 2:
getGridValue(dwindow('gpeGridAsst_1)->tableView 1:2 'orient)
Returns the orientation of all cells that have the symbol A:
getGridValue(dwindow('gpeGridAsst_1)->tableView '('symbol "A") 'orient)
Return to top