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

IsCellEditable() public method

Returns whether the Cell at the specified row and column is able to be edited by the user
public IsCellEditable ( 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 IsCellEditable(int row, int column)
        {
            return this.IsCellEditable(new CellPos(row, column));
        }

Same methods

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