Cells.isBlankRow()

Hi,


Would it be possible to implement a Cells.isBlankRow() method (along the line of Cells.isBlankColumn()) to check if a row is empty or blank?

Regards,
Henrick Blake

Hi Henrick,


OK, I have logged your feature request into our database with an id: CELLSJAVA-40139. We will look into it soon.

Thank you.

Hi,

To check whether one row contains data or not, please use following code:

Java


boolean blank = true;

Row row = cells.checkRow(rowIndex);

if(row != null)

{

blank = row.isBlank();

}