Package org.docx4j.wml.Style

Examples of org.docx4j.wml.Style.BasedOn


      this.getJaxbElement().getStyle().add(normal)
     
      normal.setDefault(Boolean.TRUE); // @since 3.2.0
    }
   
    BasedOn based = Context.getWmlObjectFactory().createStyleBasedOn();
    based.setVal(ROOT_NAME);   
    normal.setBasedOn(based);
   
    log.info("Set virtual style, id '" + styleDocDefaults.getStyleId() + "', name '"+ styleDocDefaults.getName().getVal() + "'");
   
    log.debug(XmlUtils.marshaltoString(styleDocDefaults, true, true));
View Full Code Here

TOP

Related Classes of org.docx4j.wml.Style.BasedOn

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.