Package com.extentech.formats.XLS

Examples of com.extentech.formats.XLS.BottomMargin


  }
 
  /** Gets the bottom print margin. */
  public double getBottomMargin() {
    if (bottomMargin==null) {
      bottomMargin= new BottomMargin();     
      this.sheet.addMarginRecord(bottomMargin);
    }
    return bottomMargin.getMargin();
  }
View Full Code Here


  }
 
  /** 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 );
  }
View Full Code Here

TOP

Related Classes of com.extentech.formats.XLS.BottomMargin

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.