ComboBox::ObjectCollection::Item Property (Int32)

 

Retrieves the item at the specified index within the collection.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
[BrowsableAttribute(false)]
property Object^ default[
	int index
] {
	virtual Object^ get(int index);
	virtual void set(int index, Object^ value);
}

Parameters

index
Type: System::Int32

The index of the item in the collection to retrieve.

Property Value

Type: System::Object^

An object representing the item located at the specified index within the collection.

Exception Condition
ArgumentOutOfRangeException

The index was less than zero.

-or-

The index was greater of equal to the count of items in the collection.

You can use this method to obtain the item at the specified location within the collection. You can use IndexOf to find the location of an item, or you can use the index return from the Add method.

.NET Framework
Available since 1.1
Return to top
Show: