System.Windows.Forms.ListView.ColumnHeaderCollection.this C# (CSharp) Méthode

this() public méthode

public this ( int index ) : ColumnHeader
index int
Résultat ColumnHeader
			public virtual ColumnHeader this [int index] {
				get {
					if (index < 0 || index >= list.Count)
						throw new ArgumentOutOfRangeException ("index");
					return (ColumnHeader) list [index];
				}
			}

Same methods

ListView.ColumnHeaderCollection::this ( string key ) : ColumnHeader
ListView.ColumnHeaderCollection::this ( int index ) : objectIList.System.Collections