у меня есть:
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
скрыто, поэтому чтобы скрыть эту строку с помощью этого currentRow
объекта?
Пожалуйста, помогите .. !!