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;如果不存在这样的 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

集合中指定索引处的 ListViewGroup

例外

index 小于 0,或者大于或等于 Count

注解

使用此属性检索集合中指定索引处的组。 如果对组对象有引用并且需要索引,请使用 IndexOf 该方法。

适用于