Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PosNameTypeDescriptionDefault
<1>Group Select BehaviorOptionThe behavior for selecting groupsNone
<2>Item Select BehaviorOptionThe bheavior for selecting items within groupsNone

...

Selection will only be visible if you have the HotTrackStyle property set to "Image" or "Item". If you use alternate hot track styles, the selections will still exist but be invisible to the user.

...

Code Block
// Allow one selection in the whole control at a time 
Set_Property(@Window:".OLE_SHORTCUT", "OLE.SelectBehavior", "Single":@FM:"Single") 

// Allow one selection per group 
Set_Property(@Window:".OLE_SHORTCUT", "OLE.SelectBehavior", "Multi":@FM:"Single") 

// Allow multiple selections in only one group 
Set_Property(@Window:".OLE_SHORTCUT", "OLE.SelectBehavior", "Single":@FM:"Multi") 

// Allow multiple selections throughout the whole control 
Set_Property(@Window:".OLE_SHORTCUT", "OLE.SelectBehavior", "Multi":@FM:"Multi") 

// Allow no selections 
Set_Property(@Window:".OLE_SHORTCUT", "OLE.SelectBehavior", "None")

See Also

SelectionGroupSelection