Search in sources :

Example 1 with DefaultColWidthRecord

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;
}
Also used : DefaultColWidthRecord(org.apache.poi.hssf.record.DefaultColWidthRecord)

Aggregations

DefaultColWidthRecord (org.apache.poi.hssf.record.DefaultColWidthRecord)1