CollectionView.GetItemAt(Int32) Method
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.
Retrieves the item at the specified zero-based index in the view.
public:
virtual System::Object ^ GetItemAt(int index);
public virtual object GetItemAt (int index);
abstract member GetItemAt : int -> obj
override this.GetItemAt : int -> obj
Public Overridable Function GetItemAt (index As Integer) As Object
Parameters
- index
- Int32
The zero-based index of the item to retrieve.
Returns
The item at the specified zero-based index in the view.
Exceptions
index
is less than 0.
Remarks
This method evaluates the index with any SortDescriptions or Filter property values that are set on the view.
If the underlying collection is of type IEnumerable, this is an O(N) operation.
Notes to Inheritors
When deriving from CollectionView, override this method to provide a more efficient implementation.