Examples of DrawStrokeDashElement


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

   *
   * @param drawNameValue  the <code>String</code> value of <code>DrawNameAttribute</code>, see {@odf.attribute  draw:name} at specification
   * @return the element {@odf.element draw:stroke-dash}
   */
   public DrawStrokeDashElement newDrawStrokeDashElement(String drawNameValue) {
    DrawStrokeDashElement drawStrokeDash = ((OdfFileDom) this.ownerDocument).newOdfElement(DrawStrokeDashElement.class);
    drawStrokeDash.setDrawNameAttribute(drawNameValue);
    this.appendChild(drawStrokeDash);
    return drawStrokeDash;
  }
View Full Code Here

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

   *
   * @param drawNameValue  the <code>String</code> value of <code>DrawNameAttribute</code>, see {@odf.attribute  draw:name} at specification
   * @return the element {@odf.element draw:stroke-dash}
   */
   public DrawStrokeDashElement newDrawStrokeDashElement(String drawNameValue) {
    DrawStrokeDashElement drawStrokeDash = ((OdfFileDom) this.ownerDocument).newOdfElement(DrawStrokeDashElement.class);
    drawStrokeDash.setDrawNameAttribute(drawNameValue);
    this.appendChild(drawStrokeDash);
    return drawStrokeDash;
  }
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.