diff options
author | Nick Burch <nick@apache.org> | 2011-06-22 21:16:04 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2011-06-22 21:16:04 +0000 |
commit | 29b1d688c8201adfdd94f97a8cc334e1c57e5887 (patch) | |
tree | 91a88659c53b93121a6d057f7b3984d73542a2fb | |
parent | 847b579fcc37171c2b16bb9fc75b96a2624e12a2 (diff) | |
download | poi-29b1d688c8201adfdd94f97a8cc334e1c57e5887.tar.gz poi-29b1d688c8201adfdd94f97a8cc334e1c57e5887.zip |
Add a note about RecalcId record with a value of zero
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1138637 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/java/org/apache/poi/hssf/record/RecalcIdRecord.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/java/org/apache/poi/hssf/record/RecalcIdRecord.java b/src/java/org/apache/poi/hssf/record/RecalcIdRecord.java index e938552c64..1d972aa630 100644 --- a/src/java/org/apache/poi/hssf/record/RecalcIdRecord.java +++ b/src/java/org/apache/poi/hssf/record/RecalcIdRecord.java @@ -26,7 +26,9 @@ import org.apache.poi.util.LittleEndianOutput; * recalculated. It's an optimization Excel uses to determine if it * needs to recalculate the spreadsheet when it's opened. So far, only * the two engine ids <code>0x80 0x38 0x01 0x00</code> - * and <code>0x60 0x69 0x01 0x00</code> have been seen.<p/> + * and <code>0x60 0x69 0x01 0x00</code> have been seen. + * A value of <code>0x00</code> will cause Excel to recalculate + * all formulas on the next load.<p/> * REFERENCE: http://chicago.sourceforge.net/devel/docs/excel/biff8.html<p/> * @author Luc Girardin (luc dot girardin at macrofocus dot com) */ |