The entire data contents of the table in it's original form, unsorted and not grouped. (ReadOnly)
Version Introduced: 3.0.3
Usage
Set_Property(OLECtrlEntID, "OLE.RecordList", Array)
Values
Array has the following structure:
Pos | Name | Type | Description | Default |
---|---|---|---|---|
<1> | Row | Text | The contents of an entire row | "" |
<1, 1> | Column | Text | The contents of a cell in the row | "" |
Remarks
The RecordList property is very much like the List property, with one important difference. The List property provides all the data as it appears to the user, which takes sorting and grouping into account. This property returns the data as it was originally supplied to the control, i.e., unsorted and without group rows.
Note also that this property returns the data in it's raw formatting. If you want the data unsorted, ungrouped, but formatted, use the RecordListFormatted property.
Example
// Read the table's contents, ungrouped and unsorted RecordData = Get_Property(@Window:".OLE_RECORDTABLE", "OLE.RecordList")