Click or drag to resize
KaxNavigationItemCollectionAdd Method
Appends the specified KaxNavigationItem object to the end of the current KaxNavigationItemCollection.

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

Parameters

item
Type: Kettic.AspNet.ControlsKaxNavigationItem
The KaxNavigationItem to append to the end of the current KaxNavigationItemCollection.
Examples
The following example demonstrates how to programmatically add items in a KaxNavigationBar control.
KaxNavigationItem newsItem = new KaxNavigationItem("News");
KaxNavigationBar1.Items.Add(newsItem);
See Also