public class WSBoolRecord extends Record
Description: stores workbook settings (aka its a big "everything we didn't put somewhere else")
REFERENCE: PG 425 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)
Modifier and Type | Field and Description |
---|---|
private static BitField |
alternateexpression |
private static BitField |
alternateformula |
private static BitField |
applystyles |
private static BitField |
autobreaks |
private static BitField |
dialog |
private static BitField |
displayguts |
private byte |
field_1_wsbool |
private byte |
field_2_wsbool |
private static BitField |
fittopage |
private static BitField |
rowsumsbelow |
private static BitField |
rowsumsright |
static short |
sid |
Constructor and Description |
---|
WSBoolRecord() |
WSBoolRecord(RecordInputStream in)
Constructs a WSBool record and sets its fields appropriately.
|
Modifier and Type | Method and Description |
---|---|
Object |
clone() |
protected void |
fillFields(RecordInputStream in)
called by the constructor, should set class level fields.
|
boolean |
getAlternateExpression()
whether alternate expression evaluation is on
|
boolean |
getAlternateFormula()
whether alternative formula entry is on
|
boolean |
getAutobreaks()
show automatic page breaks or not
|
boolean |
getDialog()
get whether sheet is a dialog sheet or not
|
boolean |
getDisplayGuts()
get whether to display the guts or not
|
boolean |
getFitToPage()
fit to page option is on
|
int |
getRecordSize()
gives the current serialized size of the record.
|
boolean |
getRowSumsBelow()
get if row summaries appear below detail in the outline
|
boolean |
getRowSumsRight()
get if col summaries appear right of the detail in the outline
|
short |
getSid()
return the non static version of the id for this record.
|
byte |
getWSBool1()
get first byte (see bit getters)
|
byte |
getWSBool2()
get the second byte (see bit getters)
|
int |
serialize(int offset,
byte[] data)
called by the class that is responsible for writing this sucker.
|
void |
setAlternateExpression(boolean altexp)
whether alternate expression evaluation is on
|
void |
setAlternateFormula(boolean formula)
whether alternative formula entry is on
|
void |
setAutobreaks(boolean ab)
show automatic page breaks or not
|
void |
setDialog(boolean isDialog)
set whether sheet is a dialog sheet or not
|
void |
setDisplayGuts(boolean guts)
set whether to display the guts or not
|
void |
setFitToPage(boolean fit2page)
fit to page option is on
|
void |
setRowSumsBelow(boolean below)
set if row summaries appear below detail in the outline
|
void |
setRowSumsRight(boolean right)
set if col summaries appear right of the detail in the outline
|
void |
setWSBool1(byte bool1)
set first byte (see bit setters)
|
void |
setWSBool2(byte bool2)
set the second byte (see bit setters)
|
String |
toString()
get a string representation of the record (for biffview/debugging)
|
protected void |
validateSid(short id)
called by constructor, should throw runtime exception in the event of a
record passed with a differing ID.
|
isInValueSection, isValue, serialize
public static final short sid
private byte field_1_wsbool
private byte field_2_wsbool
private static final BitField autobreaks
private static final BitField dialog
private static final BitField applystyles
private static final BitField rowsumsbelow
private static final BitField rowsumsright
private static final BitField fittopage
private static final BitField displayguts
private static final BitField alternateexpression
private static final BitField alternateformula
public WSBoolRecord()
public WSBoolRecord(RecordInputStream in)
in
- the RecordInputstream to read the record fromprotected void validateSid(short id)
Record
validateSid
in class Record
id
- alleged id for this recordprotected void fillFields(RecordInputStream in)
Record
fillFields
in class Record
in
- the RecordInputstream to read the record frompublic void setWSBool1(byte bool1)
public void setAutobreaks(boolean ab)
ab
- whether to show auto page breakspublic void setDialog(boolean isDialog)
isDialog
- or notpublic void setRowSumsBelow(boolean below)
below
- or notpublic void setRowSumsRight(boolean right)
right
- or notpublic void setWSBool2(byte bool2)
public void setFitToPage(boolean fit2page)
fit2page
- fit or notpublic void setDisplayGuts(boolean guts)
guts
- or no guts (or glory)public void setAlternateExpression(boolean altexp)
altexp
- alternative expression evaluation or notpublic void setAlternateFormula(boolean formula)
formula
- alternative formulas or notpublic byte getWSBool1()
public boolean getAutobreaks()
public boolean getDialog()
public boolean getRowSumsBelow()
public boolean getRowSumsRight()
public byte getWSBool2()
public boolean getFitToPage()
public boolean getDisplayGuts()
public boolean getAlternateExpression()
public boolean getAlternateFormula()
public String toString()
Record
public int serialize(int offset, byte[] data)
Record
public int getRecordSize()
Record
getRecordSize
in class Record
public short getSid()
Record
Copyright © 2015 Open Microscopy Environment