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

Remove() public method

Removes the specified Column from the model
public Remove ( Column column ) : void
column Column The Column to remove
return void
        public void Remove(Column column)
        {
            int columnIndex = this.IndexOf(column);

            if (columnIndex != -1)
            {
                this.RemoveAt(columnIndex);
            }
        }