SelectionPolicy Enumeration
In This Topic
Specifies how users can select items in the control.
Members
| Member | Description |
| multiRange | Allows users to select single items and ranges of items, including multiple ranges. |
| range | Allows users to select single items and ranges of items, but not multiple ranges. |
| single | Allows users to only select single items. |
Example
This example sets the selection policy.
activeSheet.selectionUnit(GC.Spread.Sheets.SelectionUnit.row);
activeSheet.selectionPolicy(GC.Spread.Sheets.SelectionPolicy.range);
Inheritance Hierarchy
Object
GC.Spread.Sheets.SelectionPolicy
See Also