ListViewItem.ListViewSubItemCollection.Item[] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從集合中取得項目。
多載
Item[Int32] |
取得或設定集合中位於指定索引處的子項目。 |
Item[String] |
從集合中取得具有指定索引鍵的項目。 |
Item[Int32]
取得或設定集合中位於指定索引處的子項目。
public:
property System::Windows::Forms::ListViewItem::ListViewSubItem ^ default[int] { System::Windows::Forms::ListViewItem::ListViewSubItem ^ get(int index); void set(int index, System::Windows::Forms::ListViewItem::ListViewSubItem ^ value); };
public System.Windows.Forms.ListViewItem.ListViewSubItem this[int index] { get; set; }
member this.Item(int) : System.Windows.Forms.ListViewItem.ListViewSubItem with get, set
Default Public Property Item(index As Integer) As ListViewItem.ListViewSubItem
參數
- index
- Int32
要從集合中擷取的項目索引。
屬性值
ListViewItem.ListViewSubItem,表示集合中、位於指定索引處的子項目。
例外狀況
index
參數小於零,或者大於等於 Count 的 ListViewItem.ListViewSubItemCollection 屬性值。
備註
您可以使用這個方法來取得 ListViewItem.ListViewSubItem 儲存在集合中特定位置的 。 若要判斷集合中特定專案的索引,請使用 IndexOf 方法。
適用於
Item[String]
從集合中取得具有指定索引鍵的項目。
public:
virtual property System::Windows::Forms::ListViewItem::ListViewSubItem ^ default[System::String ^] { System::Windows::Forms::ListViewItem::ListViewSubItem ^ get(System::String ^ key); };
public virtual System.Windows.Forms.ListViewItem.ListViewSubItem this[string key] { get; }
public virtual System.Windows.Forms.ListViewItem.ListViewSubItem? this[string key] { get; }
member this.Item(string) : System.Windows.Forms.ListViewItem.ListViewSubItem
Default Public Overridable ReadOnly Property Item(key As String) As ListViewItem.ListViewSubItem
參數
- key
- String
要擷取之 ListViewItem.ListViewSubItem 的名稱。
屬性值
具有指定金鑰的 ListViewItem.ListViewSubItem。
備註
屬性 Name 會對應至 中 之 的 ListViewItem.ListViewSubItem ListViewItem.ListViewSubItemCollection 索引鍵。
索引鍵比較不區分大小寫。 key
如果 參數為 null
或空字串, Item[] 則會傳回null.