I have:
import org.apache.poi.ss.usermodel.Row;
if ((currentRow = sheet.getRow(currentDataRow)) == null) {
currentRow = sheet.createRow(currentDataRow); // Creates a new row.
}
// How to un-hide currentRow ?
currentRow is hidden, so to un-hide this row using this currentRow object?
Please help.. !!
Looks like it’s getRowStyle().setHidden():
More info on getRowStyle.