Determines if right clicking on a group row fires an event or displays a standard context menu.

Usage

Set_Property(OLECtrlEntID, "OLE.GroupRowContextMenuEnabled", Boolean)

Values

[True | False]

Default: True

Remarks

The GroupRowContextMenuEnabled property establishes what happens when the user right clicks on a group row. By default, it displays a popup menu for expanding or collapsing the group. If you'd rather get an OnItemClick, then set this property to 0.

Example

// Give me an OnItemClick on right clicks
Set_Property(@Window:".OLE_REPORTTABLE", "OLE.GroupRowContextMenuEnabled", 0)

// Give me the built-in context menu on right clicks
Set_Property(@Window:".OLE_REPORTTABLE", "OLE.GroupRowContextMenuEnabled", 1)
  • No labels