Click or drag to resize
KaxMenuItemItems Property
Gets a KaxMenuItemCollection object that contains the child items of the current KaxMenuItem.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public KaxMenuItemCollection Items { get; }

Property Value

Type: KaxMenuItemCollection
A KaxMenuItemCollection that contains the child items of the current KaxMenuItem. By default the collection is empty (the item has no children).

Implements

IKaxMenuItemContainerItems
Remarks
Use the Items property to access the child items of the KaxMenuItem. You can also use the Items property to manage the child items - you can add, remove or modify items.
Examples
The following example demonstrates how to programmatically modify the properties of a child item.
KaxMenuItem item = KaxMenu1.FindItemByText("Test");
item.Items[0].Text = "Example";
item.Items[0].NavigateUrl = "http://www.example.com";
See Also