jxl.read.biff
class: CentreRecord [javadoc |
source]
java.lang.Object
jxl.biff.RecordData
jxl.read.biff.CentreRecord
Record which indicates the whether the horizontal center option has been set
| Constructor: |
public CentreRecord(Record t) {
super(t);
byte[] data = getRecord().getData();
centre = IntegerHelper.getInt(data[0], data[1]) != 0;
}
Parameters:
t - the record to constructfrom
|
| Method from jxl.read.biff.CentreRecord Summary: |
|---|
|
isCentre |
| Method from jxl.read.biff.CentreRecord Detail: |
public boolean isCentre() {
return centre;
}
Accessor for the centre flag |