Click or drag to resize
KaxComboBoxItemCollectionAdd Method
Appends the specified KaxComboBoxItem object 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 Add(
	KaxComboBoxItem item
)

Parameters

item
Type: Kettic.AspNet.ControlsKaxComboBoxItem
The KaxComboBoxItem to append to the end of the current KaxComboBoxItemCollection.

Implements

ICollectionTAdd(T)
Examples
The following example demonstrates how to programmatically add items in a KaxComboBox control.
KaxComboBoxItem newsItem = new KaxComboBoxItem("News");
KaxComboBox1.Items.Add(newsItem);
See Also