Search in sources :

Example 1 with SaveRecalcRecord

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

the class InternalSheet method createSaveRecalc.

/**
     * creates the SaveRecalc record and sets it to true (recalculate before saving)
     */
private static SaveRecalcRecord createSaveRecalc() {
    SaveRecalcRecord retval = new SaveRecalcRecord();
    retval.setRecalc(true);
    return retval;
}
Also used : SaveRecalcRecord(org.apache.poi.hssf.record.SaveRecalcRecord)

Aggregations

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