use of org.apache.poi.hssf.record.CalcCountRecord in project poi by apache.
the class InternalSheet method createCalcCount.
/**
* creates the CalcCount record and sets it to 100 (default number of iterations)
*/
private static CalcCountRecord createCalcCount() {
CalcCountRecord retval = new CalcCountRecord();
// default 100 iterations
retval.setIterations((short) 100);
return retval;
}
Aggregations