Package com.extentech.formats.XLS

Examples of com.extentech.formats.XLS.LeftMargin


  }
 
  /** Gets the left print margin. */
  public double getLeftMargin() {
    if (leftMargin==null) {
      leftMargin= new LeftMargin();     
      this.sheet.addMarginRecord(leftMargin);
    }
    return leftMargin.getMargin();
  }
View Full Code Here


  }
 
  /** Sets the sheet's left print margin. */
  public void setLeftMargin (double value) {
    if (leftMargin==null) {
      leftMargin= new LeftMargin();     
      this.sheet.addMarginRecord(leftMargin);
    }
    leftMargin.setMargin( value );
  }
View Full Code Here

TOP

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

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.