Package org.odftoolkit.odfdom.dom.element.draw

Examples of org.odftoolkit.odfdom.dom.element.draw.DrawOpacityElement


   *
   * @param drawStyleValue  the <code>String</code> value of <code>DrawStyleAttribute</code>, see {@odf.attribute  draw:style} at specification
   * @return the element {@odf.element draw:opacity}
   */
   public DrawOpacityElement newDrawOpacityElement(String drawStyleValue) {
    DrawOpacityElement drawOpacity = ((OdfFileDom) this.ownerDocument).newOdfElement(DrawOpacityElement.class);
    drawOpacity.setDrawStyleAttribute(drawStyleValue);
    this.appendChild(drawOpacity);
    return drawOpacity;
  }
View Full Code Here


   *
   * @param drawStyleValue  the <code>String</code> value of <code>DrawStyleAttribute</code>, see {@odf.attribute  draw:style} at specification
   * @return the element {@odf.element draw:opacity}
   */
   public DrawOpacityElement newDrawOpacityElement(String drawStyleValue) {
    DrawOpacityElement drawOpacity = ((OdfFileDom) this.ownerDocument).newOdfElement(DrawOpacityElement.class);
    drawOpacity.setDrawStyleAttribute(drawStyleValue);
    this.appendChild(drawOpacity);
    return drawOpacity;
  }
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.dom.element.draw.DrawOpacityElement

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.