Search in sources :

Example 1 with FnGroupCountRecord

use of org.apache.poi.hssf.record.FnGroupCountRecord in project poi by apache.

the class InternalWorkbook method createFnGroupCount.

/**
     * creates the FnGroupCount record containing the Magic number constant of 14.
     */
private static FnGroupCountRecord createFnGroupCount() {
    FnGroupCountRecord retval = new FnGroupCountRecord();
    retval.setCount((short) 14);
    return retval;
}
Also used : FnGroupCountRecord(org.apache.poi.hssf.record.FnGroupCountRecord)

Aggregations

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