jxl.read.biff
class: DefaultColumnWidthRecord [javadoc |
source]
java.lang.Object
jxl.biff.RecordData
jxl.read.biff.DefaultColumnWidthRecord
Contains the default column width for cells in this sheet
| Constructor: |
public DefaultColumnWidthRecord(Record t) {
super(t);
byte[] data = t.getData();
width = IntegerHelper.getInt(data[0], data[1]);
}
Constructs the def col width from the raw data Parameters:
t - the raw data
|
| Method from jxl.read.biff.DefaultColumnWidthRecord Summary: |
|---|
|
getWidth |
| Method from jxl.read.biff.DefaultColumnWidthRecord Detail: |
public int getWidth() {
return width;
}
Accessor for the default width |