278279280281282283284285286287
} /** Gets the bottom print margin. */ public double getBottomMargin() { if (bottomMargin==null) { bottomMargin= new BottomMargin(); this.sheet.addMarginRecord(bottomMargin); } return bottomMargin.getMargin(); }
515516517518519520521522523524
} /** Sets the sheet's bottom print margin. */ public void setBottomMargin (double value) { if (bottomMargin==null) { bottomMargin= new BottomMargin(); this.sheet.addMarginRecord(bottomMargin); } bottomMargin.setMargin( value ); }