KaxComboBoxItems Property |
Namespace: Kettic.AspNet.ControlsAssembly: 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; }
<PersistenceModeAttribute(PersistenceMode.InnerProperty)>
Public ReadOnly Property Items As KaxComboBoxItemCollection
Get
public:
[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
property KaxComboBoxItemCollection^ Items {
KaxComboBoxItemCollection^ get ();
}
[<PersistenceModeAttribute(PersistenceMode.InnerProperty)>]
member Items : KaxComboBoxItemCollection with 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";
KaxComboBox1.Items(0).Text = "Example"
KaxComboBox1.Items(0).Value = "1"
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