Search in sources :

Example 1 with CalcCountRecord

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

Aggregations

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