first commit
This commit is contained in:
18
hrmsEjb/jxl/read/biff/DefaultColumnWidthRecord.java
Normal file
18
hrmsEjb/jxl/read/biff/DefaultColumnWidthRecord.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package jxl.read.biff;
|
||||
|
||||
import jxl.biff.IntegerHelper;
|
||||
import jxl.biff.RecordData;
|
||||
|
||||
class DefaultColumnWidthRecord extends RecordData {
|
||||
private int width;
|
||||
|
||||
public DefaultColumnWidthRecord(Record t) {
|
||||
super(t);
|
||||
byte[] data = t.getData();
|
||||
this.width = IntegerHelper.getInt(data[0], data[1]);
|
||||
}
|
||||
|
||||
public int getWidth() {
|
||||
return this.width;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user