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

Remove() public method

Removes the specified Cell from the model
public Remove ( Cell cell ) : void
cell Cell The Cell to remove
return void
        public void Remove(Cell cell)
        {
            int cellIndex = this.IndexOf(cell);

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