ListBox::SelectedObjectCollection::Item Property (Int32)
.NET Framework (current version)
Gets the item at the specified index within the collection.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: [BrowsableAttribute(false)] property Object^ default[ int index ] { virtual Object^ get(int index) sealed; virtual void set(int index, Object^ value) sealed; }
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.
Implements
IList::Item[Int32]| 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::SelectedObjectCollection class. |
This indexer enables you to get a specific item from the ListBox::SelectedObjectCollection. The item stored in this collection is an item within the ListBox::ObjectCollection of the ListBox that represents a selected item in the ListBox.
.NET Framework
Available since 1.1
Available since 1.1
Show: