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

IsValidCell() protected method

Returns whether Cell at the specified cell position is not null
protected IsValidCell ( XPTable.Models.CellPos cellPos ) : bool
cellPos XPTable.Models.CellPos The position of the cell
return bool
        protected internal bool IsValidCell(CellPos cellPos)
        {
            return this.IsValidCell(cellPos.Row, cellPos.Column);
        }

Same methods

Table::IsValidCell ( int row, int column ) : bool
Table