KaxTreeViewNodes Property |
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public KaxTreeNodeCollection Nodes { get; }
<PersistenceModeAttribute(PersistenceMode.InnerProperty)>
Public ReadOnly Property Nodes As KaxTreeNodeCollection
Get
public:
[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
virtual property KaxTreeNodeCollection^ Nodes {
KaxTreeNodeCollection^ get () sealed;
}
[<PersistenceModeAttribute(PersistenceMode.InnerProperty)>]
abstract Nodes : KaxTreeNodeCollection with get
[<PersistenceModeAttribute(PersistenceMode.InnerProperty)>]
override Nodes : KaxTreeNodeCollection with get
Property Value
Type:
KaxTreeNodeCollection
A
KaxTreeNodeCollection that contains the root nodes of the current KaxTreeView control. By default
the collection is empty (KaxTreeView has no children).
Implements
IKaxTreeNodeContainerNodes
Remarks
Use the nodes property to access the root nodes of the KaxTreeView control. You can also use the nodes property to
manage the root nodes - you can add, remove or modify nodes.
Examples
The following example demonstrates how to programmatically modify the properties of a root node.
KaxTreeView1.Nodes[0].Text = "Example";
KaxTreeView1.Nodes[0].NavigateUrl = "http://www.example.com";
KaxTreeView1.Nodes(0).Text = "Example"
KaxTreeView1.Nodes(0).NavigateUrl = "http://www.example.com"
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also