*/
/* row height */
final RowRecord[] rinfos = jsheet.getRowProperties();
final int rowsz = rinfos.length;
for(int j =0; j < rowsz; j++){
final RowRecord rinfo = rinfos[j];
if (!ZssWorkbookParser.isDefaultHeight(rinfo)) {
final int rowHeight = rinfo.getRowHeight()/20;
final int ri = rinfo.getRowNumber();
zkSheet.setRowHeight(ri, ExcelFormatHelper.ptToPx(rowHeight));
}
}
/* column width */
final ColumnInfoRecord[] cinfos = jsheet.getColumnInfos();