KaxNavigationBarItems 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 KaxNavigationItemCollection Items { get; }
<PersistenceModeAttribute(PersistenceMode.InnerProperty)>
Public ReadOnly Property Items As KaxNavigationItemCollection
Get
public:
[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
virtual property KaxNavigationItemCollection^ Items {
KaxNavigationItemCollection^ get () sealed;
}
[<PersistenceModeAttribute(PersistenceMode.InnerProperty)>]
abstract Items : KaxNavigationItemCollection with get
[<PersistenceModeAttribute(PersistenceMode.InnerProperty)>]
override Items : KaxNavigationItemCollection with get
Property Value
Type:
KaxNavigationItemCollection
A
KaxNavigationItemCollection that contains the root items of the current KaxNavigationBar control. By default
the collection is empty (KaxNavigationBar has no children).
Implements
IKaxNavigationItemContainerItems
Remarks
Use the Items property to access the child items of KaxNavigationBar. You can also use the Items property to
manage the root items. You can add, remove or modify items from the Items collection.
Examples
The following example demonstrates how to programmatically modify the properties of root items.
KaxNavigationBar1.Items[0].Text = "Example";
KaxNavigationBar1.Items[0].NavigateUrl = "http://www.example.com";
KaxNavigationBar1.Items(0).Text = "Example"
KaxNavigationBar1.Items(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