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;
}
Aggregations