CollectionView.GetItemAt(Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
擷取檢視中位於指定索引的項目,此索引以零起始。
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
參數
- index
- Int32
要擷取之項目的索引,此索引以零起始。
傳回
在檢視中位於指定索引的項目,此索引以零起始。
例外狀況
index
小於 0。
備註
這個方法會使用檢視上設定的任何 SortDescriptions 或 Filter 屬性值來評估索引。
如果基礎集合的類型為 IEnumerable ,則這是 O (N) 作業。
給繼承者的注意事項
從 CollectionView 衍生時,請覆寫這個方法以提供更有效率的實作。