ListView.CheckedListViewItemCollection.Item[] プロパティ

定義

コレクション内の項目を取得します。

オーバーロード

Item[String]

コレクション内の指定したキーを持つ項目を取得します。

Item[Int32]

コレクション内の指定したインデックスにある項目を取得します。

Item[String]

コレクション内の指定したキーを持つ項目を取得します。

public:
 virtual property System::Windows::Forms::ListViewItem ^ default[System::String ^] { System::Windows::Forms::ListViewItem ^ get(System::String ^ key); };
public virtual System.Windows.Forms.ListViewItem this[string key] { get; }
member this.Item(string) : System.Windows.Forms.ListViewItem
Default Public Overridable ReadOnly Property Item(key As String) As ListViewItem

パラメーター

key
String

コレクション内の取得する項目のキー。

プロパティ値

ListViewItem

コレクション内の指定したインデックスにある項目を表す ListViewItem

例外

所有者の ListView が仮想モードです。

注釈

Item[]は、nullパラメーターが空または空の場合にkey``null返されます。

このプロパティは NameListView.CheckedListViewItemCollection.

適用対象

Item[Int32]

コレクション内の指定したインデックスにある項目を取得します。

public:
 property System::Windows::Forms::ListViewItem ^ default[int] { System::Windows::Forms::ListViewItem ^ get(int index); };
public System.Windows.Forms.ListViewItem this[int index] { get; }
member this.Item(int) : System.Windows.Forms.ListViewItem
Default Public ReadOnly Property Item(index As Integer) As ListViewItem

パラメーター

index
Int32

コレクション内の取得する項目のインデックス。

プロパティ値

ListViewItem

コレクション内の指定したインデックスにある項目を表す ListViewItem

例外

index パラメーターが 0 未満か、CountListView.CheckedListViewItemCollection プロパティの値以上です。

ListView が仮想モードです。

注釈

このインデクサーを使用すると、.ListView.CheckedListViewItemCollection このコレクションに格納されている項目は、内の ListView.ListViewItemCollection チェック された項目を ListView 表す項目 ListViewです。

適用対象