TcxCustomTreeView.MultiSelectStyle Property
Stores multiple node selection settings.
Declaration
property MultiSelectStyle: TMultiSelectStyle read; write; default [msControlSelect];
Property Value
| Type | Description |
|---|---|
| TMultiSelectStyle | A set of flags that correspond to multiple selection operations. |
Remarks
Multiple node selection is enabled only if the MultiSelect property is set to True. The MultiSelectStyle property value can consist of any number of the following flags in any combination:
| Value | Description |
|---|---|
msControlSelect |
A click on a node while the Ctrl key is held selects or deselects the node. |
msShiftSelect |
A click on a node while the Shift key is held selects the node and all nodes between it and the previously selected node. This operation deselects all other nodes. |
msVisibleOnly |
Node range selection operations always omit child nodes of collapsed nodes. |
msSiblingOnly |
Users can select only sibling nodes. |
See Also