NodeCheckState Enumeration

This public enumerated type defines the node checked states for the ExtendedTreeView control.

Definition

Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2023.4.9.0
[SerializableAttribute]
public enum NodeCheckState

Remarks

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.

Members

Unchecked0 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.
Checked1 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.
Mixed2 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.

See Also