The alignment of the column's check boxes.
Usage
Set_Property(OLECtrlEntID, "OLE.ColumnCheckBoxAlignment[col]", OptionValue)
Values
OptionValue can be set to one of the following valid options:
Value | Abbr. | Description |
---|---|---|
Left | L | Aligns check box to the left |
Center | C | Aligns check box in the center |
Right | R | Aligns check box to the right |
Default: Left
Indices
Index | Description |
---|---|
col | The index to a column in the report table |
Remarks
The ColumnCheckBoxAlignment property determines the alignment of the checkbox within the column's items. Left places the check box on the left side of the item with the text to the right. Right places the check box on the right side of the item with the text to the left. Center centers the the check box within the item and ignores text placement. Therefore, making both this property and the ColumnAlignment property Center will cause the text to overlay the check box.
Example
// Right align the third column's check box Set_Property(@Window:".OLE_REPORTTABLE", "OLE.ColumnCheckBoxAlignment[3]", "Right")