The alignment of the column's footer.
Usage
Set_Property(OLECtrlEntID, "OLE.ColumnFooterAlignment[col]", OptionValue)
Values
OptionValue can be set to one of the following valid options:
Value | Abbr. | Description |
---|---|---|
Left | L | Aligns contents to the left |
Center | C | Aligns contents in the center |
Right | R | Aligns contents to the right |
Default: Left
Indices
Index | Description |
---|---|
col | The index to a column in the report table |
Remarks
The ColumnFooterAlignment property determines the alignment of the column's footer. It does not affect the alignment of the column's header or data. For those, use ColumnHeaderAlignment or ColumnAlignment respectively.
Example
// Center align the third column's footer Set_Property(@Window:".OLE_REPORTTABLE", "OLE.ColumnFooterAlignment[3]", "Center")