Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PosNameTypeDescriptionDefault
<1>RecordTextThe record's text""
<1, 1>CellTextThe cell's text""

Indices

IndexDescription
recordIndex to an existing record

...

If there is less data than records being set, then the remaining cells become blank. If there is more data then records being set, then the extra data is ignored.

Example

Code Block
 // Read the 3rd record 
Data = Get_Property(@Window:".OLE_EDITTABLE", "OLE.RecordData[3]") 

 // Set records 5 through 7 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.RecordData[5-7]", Data)

...