Click or drag to resize
KaxToolBarItemCollectionAddRange Method
Appends the specified array of KaxToolBarItem objects to the end of the current KaxToolBarItemCollection.

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(
	IEnumerable<KaxToolBarItem> items
)

Parameters

items
Type: System.Collections.GenericIEnumerableKaxToolBarItem
The array of KaxToolBarItem objects to append to the end of the current KaxToolBarItemCollection.
Examples
The following example demonstrates how to use the AddRange method to add multiple items in a single step.
KaxToolBarItem[] items = new KaxToolBarItem[] { new KaxToolBarButton("Create New"),
            new KaxToolBarDropDown("Manage"),
            new KaxToolBarSplitButton("Register Purchase")};
KaxToolBar1.Items.AddRange(items);
See Also