ZForge.Controls.XPTable.Models.CellCollection.Remove C# (CSharp) Méthode

Remove() public méthode

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

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