Package org.odftoolkit.odfdom.dom.element.text

Examples of org.odftoolkit.odfdom.dom.element.text.TextOutlineStyleElement


   *
   * @param styleNameValue  the <code>String</code> value of <code>StyleNameAttribute</code>, see {@odf.attribute  style:name} at specification
   * @return the element {@odf.element text:outline-style}
   */
   public TextOutlineStyleElement newTextOutlineStyleElement(String styleNameValue) {
    TextOutlineStyleElement textOutlineStyle = ((OdfFileDom) this.ownerDocument).newOdfElement(TextOutlineStyleElement.class);
    textOutlineStyle.setStyleNameAttribute(styleNameValue);
    this.appendChild(textOutlineStyle);
    return textOutlineStyle;
  }
View Full Code Here


   *
   * @param styleNameValue  the <code>String</code> value of <code>StyleNameAttribute</code>, see {@odf.attribute  style:name} at specification
   * @return the element {@odf.element text:outline-style}
   */
   public TextOutlineStyleElement newTextOutlineStyleElement(String styleNameValue) {
    TextOutlineStyleElement textOutlineStyle = ((OdfFileDom) this.ownerDocument).newOdfElement(TextOutlineStyleElement.class);
    textOutlineStyle.setStyleNameAttribute(styleNameValue);
    this.appendChild(textOutlineStyle);
    return textOutlineStyle;
  }
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.dom.element.text.TextOutlineStyleElement

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.