Save This Page
Home » poi-src-3.2-FINAL-20081019 » org.apache » poi » hssf » record » [javadoc | source]
org.apache.poi.hssf.record
public class: RecalcIdRecord [javadoc | source]
java.lang.Object
   org.apache.poi.hssf.record.Record
      org.apache.poi.hssf.record.RecalcIdRecord
Title: Recalc Id Record

Description: This record contains an ID that marks when a worksheet was last 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 values 0xC1 0x01 0x00 0x00 0x80 0x38 0x01 0x00 (do not recalculate) and 0xC1 0x01 0x00 0x00 0x60 0x69 0x01 0x00 have been seen. If the field isNeeded is set to false (default), then this record is swallowed during the serialization process

REFERENCE: http://chicago.sourceforge.net/devel/docs/excel/biff8.html

Field Summary
public static final  short sid     
public  short[] field_1_recalcids     
Constructor:
 public RecalcIdRecord() 
 public RecalcIdRecord(RecordInputStream in) 
    Constructs a RECALCID record and sets its fields appropriately.
    Parameters:
    in - the RecordInputstream to read the record from
Method from org.apache.poi.hssf.record.RecalcIdRecord Summary:
fillFields,   getRecalcIdArray,   getRecordSize,   getSid,   isNeeded,   serialize,   setIsNeeded,   setRecalcIdArray,   toString,   validateSid
Methods from org.apache.poi.hssf.record.Record:
clone,   cloneViaReserialise,   fillFields,   getRecordSize,   getSid,   isInValueSection,   isValue,   serialize,   serialize,   toString,   validateSid
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.poi.hssf.record.RecalcIdRecord Detail:
 protected  void fillFields(RecordInputStream in) 
 public short[] getRecalcIdArray() 
    get the recalc array.
 public int getRecordSize() 
 public short getSid() 
 public boolean isNeeded() 
 public int serialize(int offset,
    byte[] data) 
 public  void setIsNeeded(boolean isNeeded) 
 public  void setRecalcIdArray(short[] array) 
    set the recalc array.
 public String toString() 
 protected  void validateSid(short id)