ListView.ColumnHeaderCollection.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中获取列标题。
重载
Item[Int32] |
获取集合中指定索引处的列标题。 |
Item[String] |
获取集合中具有指定键的列标题。 |
Item[Int32]
获取集合中指定索引处的列标题。
public:
virtual property System::Windows::Forms::ColumnHeader ^ default[int] { System::Windows::Forms::ColumnHeader ^ get(int index); };
public virtual System.Windows.Forms.ColumnHeader this[int index] { get; }
member this.Item(int) : System.Windows.Forms.ColumnHeader
Default Public Overridable ReadOnly Property Item(index As Integer) As ColumnHeader
参数
- index
- Int32
要从集合中检索的列标题的索引。
属性值
ColumnHeader,表示位于集合内指定索引处的列标题。
例外
index
小于 0,或者大于或等于 Count 的 ListView.ColumnHeaderCollection 属性的值。
注解
可以使用此方法获取 ColumnHeader 存储在集合中特定位置的 。 若要确定集合中特定列标题的索引,请使用 IndexOf 方法。
另请参阅
适用于
Item[String]
获取集合中具有指定键的列标题。
public:
virtual property System::Windows::Forms::ColumnHeader ^ default[System::String ^] { System::Windows::Forms::ColumnHeader ^ get(System::String ^ key); };
public virtual System.Windows.Forms.ColumnHeader this[string key] { get; }
member this.Item(string) : System.Windows.Forms.ColumnHeader
Default Public Overridable ReadOnly Property Item(key As String) As ColumnHeader
参数
- key
- String
要从集合中检索的列标题的名称。
属性值
具有指定键的 ColumnHeader。
注解
键比较不区分大小写。 如果 key
为 null
或为空字符串, Item[] 则 null
返回 。