C# Syntax
public interface ITreeViewBase
Name | Description | |
---|---|---|
BuildNodePath | Returns the path of a node in the tree. C# Syntax string BuildNodePath( params object[] nodePathParts ) Parameters
| |
Deselect | Clears the selection of nodes in the tree by node paths. C# Syntax void Deselect( params string[] nodesPaths ) Parameters
| |
DeselectRange | Clears the selection of the specified range of nodes in a tree. Tip: Use the BuildNodePath method to build the node path strings to be used as the fromNodePath and toNodePath arguments for this method. C# Syntax void DeselectRange( string fromNodePath, string toNodePath ) Parameters
| |
ExtendSelect | Selects additional nodes in the tree. C# Syntax void ExtendSelect( params string[] nodePaths ) Parameters
The paths of the nodes to add to the selection. | |
Select | Selects the specified nodes in the tree by nodes paths. C# Syntax void Select( params string[] nodesPaths ) Parameters
| |
SelectRange | Selects the specified range of nodes in the tree. C# Syntax void SelectRange( string fromNodePath, string toNodePath ) Parameters
Tip: Use the BuildNodePath method to build the node path strings to be used as the fromNodePath and toNodePath arguments for this method. |