ZForge.Controls.XPTable.Models.ColumnCollection.RemoveAt C# (CSharp) Method

RemoveAt() public method

Removes the Column at the specified index from the collection
public RemoveAt ( int index ) : void
index int The index of the Column to remove
return void
        public new void RemoveAt(int index)
        {
            if (index >= 0 && index < this.Count)
            {
                Column column = this[index];

                this.List.RemoveAt(index);

                this.RecalcWidthCache();

                this.OnColumnRemoved(new ColumnModelEventArgs(this.owner, column, index, index));
            }
        }