The data from all selected rows.
Usage
Array = Get_Property(OLECtrlEntID, "OLE.SelList")
Values
Array has the following structure:
Pos | Name | Type | Description |
---|---|---|---|
<1> | Selected Row Data | Text | Data from a selected row |
<1, 1> | Selected Column Data | Text | Data from a cell in the selected row |
Remarks
The SelList property can be useful if you need data from the currently selected rows. Rows are @FM-delimited and columns are @VM-delimited, just like the List property. However, instead of getting all rows' data you only get the data from the selected rows. If there are no selected rows, then the property returns nothing.
This property is read only.
Example
// Get the data from the selected rows SelList = Get_Property(@Window:".OLE_RECORDTABLE", "OLE.SelList")