Determines if the column can be grouped.

Usage

Set_Property(OLECtrlEntID, "OLE.ColumnGroupable[col]", Boolean)

Values

[True | False]

Default: True

Indices

IndexDescription
colThe index to a column in the report table

Remarks

The ColumnGroupable property establishes whether or not the column can be grouped. When true, the user can drag and drop a column into the group panel. When false, even if the user is allowed to drag and drop the column into new positions, they will no be able to drop the column into the group panel.

Example

// Prevent column 2 from being grouped, since it doesn't have any repeating values 
Set_Property(@Window:".OLE_REPORTTABLE", "OLE.ColumnGroupable[2]", 0)

See Also

ColumnAutoSortWhenGrouped

  • No labels