|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.poi.hssf.record.Record
org.apache.poi.hssf.record.WindowOneRecord
public class WindowOneRecord
Title: Window1 Record
Description: Stores the attributes of the workbook window. This is basically so the gui knows how big to make the window holding the spreadsheet document.
REFERENCE: PG 421 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)
Field Summary | |
---|---|
static short |
sid
|
Constructor Summary | |
---|---|
WindowOneRecord()
|
|
WindowOneRecord(RecordInputStream in)
Constructs a WindowOne record and sets its fields appropriately. |
Method Summary | |
---|---|
protected void |
fillFields(RecordInputStream in)
called by the constructor, should set class level fields. |
int |
getActiveSheetIndex()
|
short |
getDisplayedTab()
Deprecated. - Misleading name - use getFirstVisibleTab() |
boolean |
getDisplayHorizontalScrollbar()
get whether to display the horizontal scrollbar or not |
boolean |
getDisplayTabs()
get whether to display the tabs or not |
boolean |
getDisplayVerticalScrollbar()
get whether to display the vertical scrollbar or not |
int |
getFirstVisibleTab()
|
short |
getHeight()
get the height of the window |
boolean |
getHidden()
get whether the window is hidden or not |
short |
getHorizontalHold()
get the horizontal position of the window (in 1/20ths of a point) |
boolean |
getIconic()
get whether the window has been iconized or not |
short |
getNumSelectedTabs()
get the number of selected tabs |
short |
getOptions()
get the options bitmask (see bit setters) |
int |
getRecordSize()
gives the current serialized size of the record. |
short |
getSelectedTab()
Deprecated. - Misleading name - use getActiveSheetIndex() |
short |
getSid()
return the non static version of the id for this record. |
short |
getTabWidthRatio()
ratio of the width of the tabs to the horizontal scrollbar |
short |
getVerticalHold()
get the vertical position of the window (in 1/20ths of a point) |
short |
getWidth()
get the width of the window |
int |
serialize(int offset,
byte[] data)
called by the class that is responsible for writing this sucker. |
void |
setActiveSheetIndex(int index)
|
void |
setDisplayedTab(short t)
Deprecated. - Misleading name - use setFirstVisibleTab() |
void |
setDisplayHorizonalScrollbar(boolean scroll)
set whether to display the horizontal scrollbar or not |
void |
setDisplayTabs(boolean disptabs)
set whether to display the tabs or not |
void |
setDisplayVerticalScrollbar(boolean scroll)
set whether to display the vertical scrollbar or not |
void |
setFirstVisibleTab(int t)
Sets the first visible sheet in the worksheet tab-bar. |
void |
setHeight(short h)
set teh height of the window |
void |
setHidden(boolean ishidden)
set whether the window is hidden or not |
void |
setHorizontalHold(short h)
set the horizontal position of the window (in 1/20ths of a point) |
void |
setIconic(boolean isiconic)
set whether the window has been iconized or not |
void |
setNumSelectedTabs(short n)
set the number of selected tabs |
void |
setOptions(short o)
set the options bitmask (see bit setters) |
void |
setSelectedTab(short s)
Deprecated. - Misleading name - use setActiveSheetIndex() |
void |
setTabWidthRatio(short r)
ratio of the width of the tabs to the horizontal scrollbar |
void |
setVerticalHold(short v)
set the vertical position of the window (in 1/20ths of a point) |
void |
setWidth(short w)
set the width of the window |
java.lang.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. |
Methods inherited from class org.apache.poi.hssf.record.Record |
---|
clone, cloneViaReserialise, isInValueSection, isValue, serialize |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final short sid
Constructor Detail |
---|
public WindowOneRecord()
public WindowOneRecord(RecordInputStream in)
in
- the RecordInputstream to read the record fromMethod Detail |
---|
protected 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 setHorizontalHold(short h)
h
- - horizontal locationpublic void setVerticalHold(short v)
v
- - vertical locationpublic void setWidth(short w)
w
- widthpublic void setHeight(short h)
h
- heightpublic void setOptions(short o)
o
- - the bitmaskpublic void setHidden(boolean ishidden)
ishidden
- or notpublic void setIconic(boolean isiconic)
isiconic
- iconize or notpublic void setDisplayHorizonalScrollbar(boolean scroll)
scroll
- display or notpublic void setDisplayVerticalScrollbar(boolean scroll)
scroll
- display or notpublic void setDisplayTabs(boolean disptabs)
disptabs
- display or notpublic void setActiveSheetIndex(int index)
public void setSelectedTab(short s)
public void setFirstVisibleTab(int t)
t
- the sheet index of the tab that will become the first in the tab-barpublic void setDisplayedTab(short t)
public void setNumSelectedTabs(short n)
n
- number of tabspublic void setTabWidthRatio(short r)
r
- ratiopublic short getHorizontalHold()
public short getVerticalHold()
public short getWidth()
public short getHeight()
public short getOptions()
public boolean getHidden()
public boolean getIconic()
public boolean getDisplayHorizontalScrollbar()
public boolean getDisplayVerticalScrollbar()
public boolean getDisplayTabs()
public int getActiveSheetIndex()
public short getSelectedTab()
public int getFirstVisibleTab()
public short getDisplayedTab()
public short getNumSelectedTabs()
public short getTabWidthRatio()
public java.lang.String toString()
Record
toString
in class Record
public int serialize(int offset, byte[] data)
Record
serialize
in class Record
offset
- to begin writing atdata
- byte array containing instance data
public int getRecordSize()
Record
getRecordSize
in class Record
public short getSid()
Record
getSid
in class Record
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |