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

InvalidateRow() public method

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

Same methods

Table::InvalidateRow ( Row row ) : void
Table::InvalidateRow ( int row ) : void
Table