Versions Compared

Key

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

...

The images below show the results of each possible value:

 

NoneSingle Group, Single Item

Single Group, Multi Item

Multi Group, Single Item

Mutli Group, Multi Item

Image ModifiedImage ModifiedImage ModifiedImage ModifiedImage Modified

Example

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

...