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

IsCellEnabled() public method

Returns whether the Cell at the specified row and column is able to respond to user interaction
public IsCellEnabled ( int row, int column ) : bool
row int The row index of the Cell to check
column int The column index of the Cell to check
return bool
        public bool IsCellEnabled(int row, int column)
        {
            return this.IsCellEnabled(new CellPos(row, column));
        }

Same methods

Table::IsCellEnabled ( XPTable.Models.CellPos cellpos ) : bool
Table