C++
bool isContentEditable( int nRow, int nCol ) const;
Description
This function checks the cell state to determine if a cell content can be modified.
For example, content locked and read-only cells cannot be modified. Applications should use this function to determine if a cell is editable instead of calling cellState directly and checking the state since the semantics of an editable cell may change as new states are added.
Returns true if the content can be modified and false if not.
Parameters
Parameters | Description |
---|---|
nRow | Input row index. It should be more than or equal to 0 and less than the number of rows |
nCol | Input column index. It should be more than or equal to 0 and less than the number of columns |