Click or drag to resize
KaxNavigationItemCollectionAddRange Method
Appends the specified array of KaxNavigationItem objects 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 AddRange(
	KaxNavigationItem[] items
)

Parameters

items
Type: Kettic.AspNet.ControlsKaxNavigationItem
The array of KaxNavigationItem o append to the end of the current KaxNavigationItemCollection.
Examples
The following example demonstrates how to use the AddRange method to add multiple items in a single step.
KaxNavigationItem[] items = new KaxNavigationItem[] { new KaxNavigationItem("First"), new KaxNavigationItem("Second"), new KaxNavigationItem("Third") };
KaxNavigationBar1.Items.AddRange(items);
See Also