Versions Compared

Key

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

...

The images below show the results of each possible value:

                   Image Removed

None

Image Removed 

Single Group, Single Item

Image Removed

...

                    Image Removed

Single Group, Multi

...

Item

Multi Group, Single Item

...

Mutli Group, Multi Item

Image AddedImage AddedImage AddedImage AddedImage Added

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

...