Files
HRMS/hrmsEjb/jxl/write/biff/GridSetRecord.java
2025-07-28 13:56:49 +05:30

23 lines
413 B
Java

package jxl.write.biff;
import jxl.biff.Type;
import jxl.biff.WritableRecordData;
class GridSetRecord extends WritableRecordData {
private byte[] data;
private boolean gridSet;
public GridSetRecord(boolean gs) {
super(Type.GRIDSET);
this.gridSet = gs;
this.data = new byte[2];
if (this.gridSet)
this.data[0] = 1;
}
public byte[] getData() {
return this.data;
}
}