ListViewGroupCollection.Item[] プロパティ

定義

コレクション内の ListViewGroup を取得または設定します。

オーバーロード

Item[String]

指定された ListViewGroup プロパティ値で、Name を取得または設定します。

Item[Int32]

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

Item[String]

指定された ListViewGroup プロパティ値で、Name を取得または設定します。

public:
 property System::Windows::Forms::ListViewGroup ^ default[System::String ^] { System::Windows::Forms::ListViewGroup ^ get(System::String ^ key); void set(System::String ^ key, System::Windows::Forms::ListViewGroup ^ value); };
public System.Windows.Forms.ListViewGroup this[string key] { get; set; }
public System.Windows.Forms.ListViewGroup? this[string key] { get; set; }
member this.Item(string) : System.Windows.Forms.ListViewGroup with get, set
Default Public Property Item(key As String) As ListViewGroup

パラメーター

key
String

取得または設定するグループの名前。

プロパティ値

指定した名前を持つ ListViewGroup。そのような ListViewGroup が存在しない場合は null

適用対象

Item[Int32]

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

public:
 property System::Windows::Forms::ListViewGroup ^ default[int] { System::Windows::Forms::ListViewGroup ^ get(int index); void set(int index, System::Windows::Forms::ListViewGroup ^ value); };
public System.Windows.Forms.ListViewGroup this[int index] { get; set; }
member this.Item(int) : System.Windows.Forms.ListViewGroup with get, set
Default Public Property Item(index As Integer) As ListViewGroup

パラメーター

index
Int32

取得または設定する ListViewGroup のコレクション内のインデックス。

プロパティ値

コレクション内の指定したインデックス位置の ListViewGroup

例外

index が 0 未満、または Count 以上です。

注釈

コレクション内の指定したインデックスにあるグループを取得するには、このプロパティを使用します。 グループ オブジェクトへの参照があり、インデックスが必要な場合は、 メソッドを使用します IndexOf

適用対象