use of org.apache.poi.hssf.record.DefaultColWidthRecord in project poi by apache.
the class InternalSheet method createDefaultColWidth.
/**
* creates the DefaultColWidth Record and sets it to 8
*/
private static DefaultColWidthRecord createDefaultColWidth() {
DefaultColWidthRecord retval = new DefaultColWidthRecord();
retval.setColWidth(DefaultColWidthRecord.DEFAULT_COLUMN_WIDTH);
return retval;
}
Aggregations