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

RemoveAt() public method

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

                this.List.RemoveAt(index);

                this.OnCellRemoved(new RowEventArgs(this.owner, cell, index, index));
            }
        }