XPTable.Models.Table.InvalidateCell C# (CSharp) Method

InvalidateCell() public method

Invalidates the specified Cell
public InvalidateCell ( Cell cell ) : void
cell Cell The Cell to be invalidated
return void
        public void InvalidateCell(Cell cell)
        {
            this.InvalidateCell(cell.Row.Index, cell.Index);
        }

Same methods

Table::InvalidateCell ( XPTable.Models.CellPos cellPos ) : void
Table::InvalidateCell ( int row, int column ) : void
Table