use of org.apache.poi.hssf.record.CalcModeRecord in project poi by apache.
the class InternalSheet method createCalcMode.
/**
* creates the CalcMode record and sets it to 1 (automatic formula caculation)
*/
private static CalcModeRecord createCalcMode() {
CalcModeRecord retval = new CalcModeRecord();
retval.setCalcMode((short) 1);
return retval;
}
Aggregations