KaxSiteMapNodeNodes 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 KaxSiteMapNodeCollection Nodes { get; }
<PersistenceModeAttribute(PersistenceMode.InnerProperty)>
Public ReadOnly Property Nodes As KaxSiteMapNodeCollection
Get
public:
[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
virtual property KaxSiteMapNodeCollection^ Nodes {
KaxSiteMapNodeCollection^ get () sealed;
}
[<PersistenceModeAttribute(PersistenceMode.InnerProperty)>]
abstract Nodes : KaxSiteMapNodeCollection with get
[<PersistenceModeAttribute(PersistenceMode.InnerProperty)>]
override Nodes : KaxSiteMapNodeCollection with get
Property Value
Type:
KaxSiteMapNodeCollection
A
KaxSiteMapNodeCollection that contains the child nodes of the current KaxSiteMapNode. By default
the collection is empty (the node has no children).
Implements
IKaxSiteMapNodeContainerNodes
Remarks
Use the Nodes property to access the child nodes of the KaxSiteMapNode. You can also use the Nodes property to
manage the child nodes - you can add, remove or modify nodes.
Examples
The following example demonstrates how to programmatically modify the properties of a child node.
KaxSiteMapNode node = KaxSiteMap1.FindNodeByText("Test");
node.Nodes[0].Text = "Example";
node.Nodes[0].NavigateUrl = "http://www.example.com";
Dim node As KaxSiteMapNode = KaxSiteMap1.FindNodeByText("Test")
node.Nodes(0).Text = "Example"
node.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