Skip to content

TreeSelectionState

Namespace: Hex1b.Widgets

Assembly: Hex1b.dll

Specifies the selection state of a tree item in multi-select mode with cascade selection.

csharp
public enum TreeSelectionState

Fields

Indeterminate

The item has some (but not all) children selected. This state only applies to parent items when cascade selection is enabled.

Returns: TreeSelectionState

csharp
Indeterminate = 2

None

The item is not selected (and no children are selected if it's a parent).

Returns: TreeSelectionState

csharp
None = 0

Selected

The item is fully selected (and all children are selected if it's a parent).

Returns: TreeSelectionState

csharp
Selected = 1

Released under the MIT License.