NodeCheckState Enumeration
This public enumerated type defines the node checked states for the
ExtendedTreeView
control.
Namespace: EWSoftware.ListControlsAssembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2023.4.9.0
[SerializableAttribute]
public enum NodeCheckState
<SerializableAttribute>
Public Enumeration NodeCheckState
[SerializableAttribute]
public enum class NodeCheckState
[<SerializableAttribute>]
type NodeCheckState
These values can be used for comparison against a tree node's
StateImageIndex
to determine its checked state in addition to the
Checked property. This is
useful when parent/child checked states are synchronized and you need to determine if the parent node is
in a mixed state.
Unchecked | 0 |
The node is in an unchecked state. When the parent/child checked states are synchronized, it also
indicates that all child nodes are unchecked as well.
|
Checked | 1 |
The node is in a checked state. When parent/child checked states are synchronized, it also indicates
that all child nodes are checked as well.
|
Mixed | 2 |
This state is only available when parent/child checked states are synchronized. This indicates that
the node is in a checked state but the child nodes contain a mix of checked and unchecked states.
|
None | -1 |
The node has no state image associated with it.
|