ListBox.SelectedObjectCollection.Item[Int32] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the item at the specified index within the collection.
public:
property System::Object ^ default[int] { System::Object ^ get(int index); void set(int index, System::Object ^ value); };
[System.ComponentModel.Browsable(false)]
public object this[int index] { get; set; }
[System.ComponentModel.Browsable(false)]
public object? this[int index] { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Item(int) : obj with get, set
Default Public Property Item(index As Integer) As Object
Parameters
- index
- Int32
The index of the item in the collection to retrieve.
Property Value
An object representing the item located at the specified index within the collection.
Implements
- Attributes
Exceptions
The index
parameter is less than zero or greater than or equal to the value of the Count property of the ListBox.SelectedObjectCollection class.
Remarks
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.