Extended Tree ViewGet Node Check State Method
Returns a value indicating the current check state of the node with the specified name
Definition
Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
The current check state of the specified node. A return value of Mixed is equivalent to Checked. It indicates that the children of the node contain a mix of checked and unchecked items. This only occurs if the SyncParentChildCheckedState property is true.
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
public NodeCheckState GetNodeCheckState(
string name
)VB
Public Function GetNodeCheckState (
name As String
) As NodeCheckStateC++
public:
NodeCheckState GetNodeCheckState(
String^ name
)F#
member GetNodeCheckState :
name : string -> NodeCheckState Parameters
- name String
- The node name to find in the tree view.
Return Value
NodeCheckStateThe current check state of the specified node. A return value of Mixed is equivalent to Checked. It indicates that the children of the node contain a mix of checked and unchecked items. This only occurs if the SyncParentChildCheckedState property is true.
Exceptions
| ArgumentOutOfRangeException | This is thrown if the node name is not found in the tree view. |