TreeViewNode Constructors
Represents an individual node within an ASPxTreeView control.Name | Parameters | Description |
---|---|---|
TreeViewNode() | none | Initializes a new instance of the TreeViewNode class with default settings. |
TreeViewNode(String, String, String, String, String) | text, name, imageUrl, navigateUrl, target | Initializes a new instance of the TreeViewNode class with the specified settings. |
TreeViewNode(String, String, String, String) | text, name, imageUrl, navigateUrl | Initializes a new instance of the TreeViewNode class with the specified settings. |
TreeViewNode(String, String, String) | text, name, imageUrl | Initializes a new instance of the TreeViewNode class with the specified settings. |
TreeViewNode(String, String) | text, name | Initializes a new instance of the TreeViewNode class with the specified settings. |
TreeViewNode(String) | text | Initializes a new instance of the TreeViewNode class with the specified text. |
See Also