C++
bool isEmpty( int nRow, int nCol ) const;
Description
This function inserts checks if the content of the specified cell is empty
Returns true if the cell is empty, 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. |