The data for a single row.
Usage
Set_Property(OLECtrlEntID, "OLE.RowData[row]", Array)
Values
Array has the following structure:
Pos | Name | Type | Description | Default |
---|---|---|---|---|
<1> | Item | An item of data within the row | "" |
Indices
Index | Description |
---|---|
row | The index to a row in the report table |
Remarks
The RowData property provides access on a per-row level to data in the report table. The data is returned in a @FM delimited dynamic array. Each item in the array represents the column data for that row and only that row.
Note that some rows in the Report Table do not contain data because they represent group headers. This property does not respond to indexes pointing to a non-data row. In other words, reading the RowData property for such a row returns "" while setting the property has no effect at all.
To get the entire contents of the table, use the List property.
Example
// during a click event, read the row data Row = Param1 RowData = Get_Property(@Window:".OLE_REPORTTABLE", "OLE.RowData[":Row:"]")