public final class WindowOneRecord extends StandardRecord
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)
Modifier and Type | Field and Description |
---|---|
static short |
sid |
Constructor and Description |
---|
WindowOneRecord() |
WindowOneRecord(RecordInputStream in) |
Modifier and Type | Method and Description |
---|---|
int |
getActiveSheetIndex() |
protected int |
getDataSize() |
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)
|
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
|
void |
serialize(LittleEndianOutput out)
Write the data content of this BIFF record.
|
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)
|
getRecordSize, serialize
clone, cloneViaReserialise, serialize
public static final short sid
public WindowOneRecord()
public WindowOneRecord(RecordInputStream in)
public 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
public void serialize(LittleEndianOutput out)
StandardRecord
RecordBase.getRecordSize()
} minus four
( record header consiting of a 'ushort sid' and 'ushort reclength' has already been written
by thye superclass).serialize
in class StandardRecord
protected int getDataSize()
getDataSize
in class StandardRecord
Copyright © 2005-2010 Potix Corporation. All Rights Reserved.