An item's check box state.
Usage
Set_Property(OLECtrlEntID, "OLE.ItemChecked[col; record]", Boolean)
Values
[True | False]
Default: False
Indices
Index | Description |
---|---|
col | The index to a column in the report table |
record | The index to a record in the report table |
Remarks
The ItemChecked property gets or sets the check box state of an item. You must pass the item's column and record position. This property 1 if the box is checked and 0 if not.
Just like the SRP EditTable Control, you must separate the column and record index by a semicolon, not a comma.
Example
// Determine if the item is checked IsChecked = Get_Property(@Window:".OLE_REPORTTABLE", "OLE.ItemChecked[2;1]") // Check item in record 10, column 3 Set_Property(@Window:".OLE_REPORTTABLE", "OLE.ItemChecked[3;10]", 1)