Yug*_*dle 2 java excel apache-poi
我有:
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 ?
Run Code Online (Sandbox Code Playgroud)
currentRow是隐藏的,那么要使用该对象取消隐藏该行currentRow吗?
请帮忙.. !!
看起来像getRowStyle().setHidden():
currentRow.getRowStyle().setHidden(false);
Run Code Online (Sandbox Code Playgroud)
有关getRowStyle的更多信息。
| 归档时间: |
|
| 查看次数: |
9086 次 |
| 最近记录: |