Click or drag to resize
KaxComboBoxItemCollectionAddRange Method
Appends the specified array of KaxComboBoxItem objects to the end of the current KaxComboBoxItemCollection.

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

Parameters

items
Type: System.Collections.GenericIEnumerableKaxComboBoxItem
The array of KaxComboBoxItem o append to the end of the current KaxComboBoxItemCollection.
Examples
The following example demonstrates how to use the AddRange method to add multiple items in a single step.
KaxComboBoxItem[] items = new KaxComboBoxItem[] { new KaxComboBoxItem("First"), new KaxComboBoxItem("Second"), new KaxComboBoxItem("Third") };
KaxComboBox1.Items.AddRange(items);
See Also