System.Windows.Forms.ListView.ColumnHeaderCollection.IList C# (CSharp) Method

IList() private method

private IList ( int index, object value ) : void
index int
value object
return void
			void IList.Insert (int index, object value)
			{
				if (! (value is ColumnHeader)) {
					throw new ArgumentException ("Not of type ColumnHeader", "value");
				}

				this.Insert (index, (ColumnHeader) value);
			}

Same methods

ListView.ColumnHeaderCollection::IList ( object value ) : bool
ListView.ColumnHeaderCollection::IList ( object value ) : int
ListView.ColumnHeaderCollection::IList ( object value ) : void