Wimark.Controls Class Library  

ComboBox.ComboBoxItemCollection.Item Property

Gets or sets the ComboBoxItem object with the specified value in the collection.

[C#] In C#, this property is the indexer for the ComboBox.ComboBoxItemCollection class.

Overload List

Gets or sets the ComboBoxItem object at the specified indexed location in the collection.

[Visual Basic] Overloads Public Property Item(Integer) As ComboBoxItem
[C#] public ComboBoxItem this[int] {get; set;}
[C++] public: __property ComboBoxItem* get_Item(int);
public: __property void set_Item(int, ComboBoxItem*);

Gets or sets the ComboBoxItem object with the specified value in the collection.

[Visual Basic] Overloads Public ReadOnly Property Item(Object) As ComboBoxItem
[C#] public ComboBoxItem this[object] {get;}
[C++] public: __property ComboBoxItem* get_Item(Object*);

See Also

ComboBox.ComboBoxItemCollection Class | ComboBox.ComboBoxItemCollection Members | Wimark.Controls Namespace | ComboBoxItem