KaxComboBoxItemCollectionAdd Method |
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic virtual void Add(
KaxComboBoxItem item
)
Public Overridable Sub Add (
item As KaxComboBoxItem
)
public:
virtual void Add(
KaxComboBoxItem^ item
)
abstract Add :
item : KaxComboBoxItem -> unit
override Add :
item : KaxComboBoxItem -> unit
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);
Dim newsItem As KaxNavigationItem = New KaxComboBoxItem("News")
KaxComboBox1.Items.Add(newsItem)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also