dgDataOfLine
Type
property
Syntax
get the dgDataOfLine[pLine] of group "DataGrid" summary: Get or
set the data associated with a particular line.
Description
Get or set the data associated with a particular line. The value is the array assigned to that line.
note
Setting the data of a line will cause the data grid to refresh the line if it is visible on screen.
Examples
set the dgDataOfLine [ pLine ] of group "DataGrid" to pDataA
put the dgDataOfLine[1] of group "DataGrid" into theMessageA
put theMessageA["message"] -- puts "hi"