XPTable.Models.Table.IsValidCell C# (CSharp) Метод

IsValidCell() защищенный Метод

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
Результат bool
        protected internal bool IsValidCell(CellPos cellPos)
        {
            return this.IsValidCell(cellPos.Row, cellPos.Column);
        }

Same methods

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