jxl.read.biff
Class RowRecord

java.lang.Object
  |
  +--jxl.biff.RecordData
        |
        +--jxl.read.biff.RowRecord

public class RowRecord
extends RecordData

A row record


Field Summary
private  boolean collapsed
          Flag to indicate whether this row is collapsed or not
private static int defaultHeightIndicator
          Indicates that the row is default height
private  int rowHeight
          The height of this row
private  int rowNumber
          The number of this row
private  boolean zeroHeight
          Indicates whether this row has zero height (ie.
 
Fields inherited from class jxl.biff.RecordData
code, record
 
Constructor Summary
(package private) RowRecord(Record t)
          Constructs this object from the raw data
 
Method Summary
 int getRowHeight()
          Gets the height of the row
 int getRowNumber()
          Gets the row number
 boolean isCollapsed()
          Queries whether the row is collapsed
(package private)  boolean isDefaultHeight()
          Interrogates whether this row is of default height
 boolean isZeroHeight()
          Queries whether the row has been set to zero height
 
Methods inherited from class jxl.biff.RecordData
getCode, getRecord
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

rowNumber

private int rowNumber
The number of this row

rowHeight

private int rowHeight
The height of this row

collapsed

private boolean collapsed
Flag to indicate whether this row is collapsed or not

zeroHeight

private boolean zeroHeight
Indicates whether this row has zero height (ie. whether it is hidden)

defaultHeightIndicator

private static int defaultHeightIndicator
Indicates that the row is default height
Constructor Detail

RowRecord

RowRecord(Record t)
Constructs this object from the raw data
Parameters:
t - the raw data
Method Detail

isDefaultHeight

boolean isDefaultHeight()
Interrogates whether this row is of default height
Returns:
TRUE if this is set to the default height, FALSE otherwise

getRowNumber

public int getRowNumber()
Gets the row number
Returns:
the number of this row

getRowHeight

public int getRowHeight()
Gets the height of the row
Returns:
the row height

isCollapsed

public boolean isCollapsed()
Queries whether the row is collapsed
Returns:
the collapsed indicator

isZeroHeight

public boolean isZeroHeight()
Queries whether the row has been set to zero height
Returns:
the zero height indicator