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:

ValueAbbr.Description
LeftLAligns check box to the left
CenterCAligns check box in the center
RightRAligns check box to the right

Default: Left

Indices

IndexDescription
colThe 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")

See Also

ColumnAlignment

  • No labels