The entire data contents of the table in it's original form, unsorted and not grouped, formatted using the column format settings. (ReadOnly)
Version Introduced: 3.0.3
Usage
Set_Property(OLECtrlEntID, "OLE.RecordListFormatted", 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 RecordListFormatted property is functionally the same as the RecordList property; they both return the table's data unsorted and ungrouped. However, the RecordListFormatted property also formats the data according to the column's formats.
Example
// Read the table's contents, ungrouped and unsorted, but formatted RecordDataFormatted = Get_Property(@Window:".OLE_RECORDTABLE", "OLE.RecordListFormatted")