10 lines
168 B
Java
10 lines
168 B
Java
package jxl.write.biff;
|
|
|
|
import jxl.biff.Type;
|
|
|
|
class BottomMarginRecord extends MarginRecord {
|
|
BottomMarginRecord(double v) {
|
|
super(Type.BOTTOMMARGIN, v);
|
|
}
|
|
}
|