Extended Tree ViewGet Node Checked Method
Returns a value indicating whether the node with the specified name is checked
Definition
Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
True if the named node is checked, false if it is not.
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
public bool GetNodeChecked(
string name
)VB
Public Function GetNodeChecked (
name As String
) As BooleanC++
public:
bool GetNodeChecked(
String^ name
)F#
member GetNodeChecked :
name : string -> bool Parameters
- name String
- The node name to find in the tree view.
Return Value
BooleanTrue if the named node is checked, false if it is not.
Exceptions
| ArgumentOutOfRangeException | This is thrown if the node name is not found in the tree view. |