C++
AcDb::CellState cellState( int nRow, int nCol ) const;
Description
This function returns the cell state.
To determine if a cell's content and format are editable use the functions isContentEditable() and isFormatEditable() instead of using cellState() and checking the returned state. This is because the semantics of an editable cell may change as new states are added.
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 |