Node Check State 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: 2024.12.31.0
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
[SerializableAttribute]
public enum NodeCheckStateVB
<SerializableAttribute>
Public Enumeration NodeCheckStateC++
[SerializableAttribute]
public enum class NodeCheckStateF#
[<SerializableAttribute>]
type NodeCheckStateRemarks
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
| 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. |