ListBox::ObjectCollection::Item Property (Int32)

 

Gets or sets 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 get or set.

Property Value

Type: System::Object^

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

Exception Condition
ArgumentOutOfRangeException

The index parameter is less than zero or greater than or equal to the value of the Count property of the ListBox::ObjectCollection class.

You can use this method to obtain the ListBox item stored at a specific location within the collection. To determine the index of a specific item within the collection, use the IndexOf method.

.NET Framework
Available since 1.1
Return to top
Show: