Examples of PresentationPlaceholderElement


Examples of org.odftoolkit.odfdom.dom.element.presentation.PresentationPlaceholderElement

   * @param svgXValue  the <code>String</code> value of <code>SvgXAttribute</code>, see {@odf.attribute  svg:x} at specification
   * @param svgYValue  the <code>String</code> value of <code>SvgYAttribute</code>, see {@odf.attribute  svg:y} at specification
   * @return the element {@odf.element presentation:placeholder}
   */
   public PresentationPlaceholderElement newPresentationPlaceholderElement(String presentationObjectValue, String svgHeightValue, String svgWidthValue, String svgXValue, String svgYValue) {
    PresentationPlaceholderElement presentationPlaceholder = ((OdfFileDom) this.ownerDocument).newOdfElement(PresentationPlaceholderElement.class);
    presentationPlaceholder.setPresentationObjectAttribute(presentationObjectValue);
    presentationPlaceholder.setSvgHeightAttribute(svgHeightValue);
    presentationPlaceholder.setSvgWidthAttribute(svgWidthValue);
    presentationPlaceholder.setSvgXAttribute(svgXValue);
    presentationPlaceholder.setSvgYAttribute(svgYValue);
    this.appendChild(presentationPlaceholder);
    return presentationPlaceholder;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.