Click or drag to resize
KaxMenuItemCollectionAdd Method
Appends the specified KaxMenuItem object to the end of the current KaxMenuItemCollection.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public virtual void Add(
	KaxMenuItem item
)

Parameters

item
Type: Kettic.AspNet.ControlsKaxMenuItem
The KaxMenuItem to append to the end of the current KaxMenuItemCollection.
Examples
The following example demonstrates how to programmatically add items in a KaxMenu control.
KaxMenuItem newsItem = new KaxMenuItem("News");
KaxMenu1.Items.Add(newsItem);
See Also