Click or drag to resize
KaxComboBoxItems Property
Gets a KaxComboBoxItemCollection object that contains the items of the current KaxComboBox control.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public KaxComboBoxItemCollection Items { get; }

Property Value

Type: KaxComboBoxItemCollection
A KaxComboBoxItemCollection that contains the items of the current KaxComboBox control. By default the collection is empty (KaxComboBox has no children).
Remarks
Use the Items property to access the child items of KaxComboBox You can add, remove or modify items from the Items collection.
Examples
The following example demonstrates how to programmatically modify the properties of items.
KaxComboBox1.Items[0].Text = "Example";
KaxComboBox1.Items[0].Value = "1";
See Also