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

InvalidateCell() public method

Invalidates the Cell located at the specified CellPos
public InvalidateCell ( XPTable.Models.CellPos cellPos ) : void
cellPos XPTable.Models.CellPos A CellPos that specifies the Cell to be invalidated
return void
        public void InvalidateCell(CellPos cellPos)
        {
            this.InvalidateCell(cellPos.Row, cellPos.Column);
        }

Same methods

Table::InvalidateCell ( Cell cell ) : void
Table::InvalidateCell ( int row, int column ) : void
Table