Package org.docx4j.model.properties.paragraph

Examples of org.docx4j.model.properties.paragraph.OutlineLevel


      log.debug("Indent from ppr: " + XmlUtils.marshaltoString(pPr.getInd(),  true, true)) ;
      properties.add(new Indent(pPr.getInd()));     
    }
   
    if (pPr.getOutlineLvl() != null)
      properties.add(new OutlineLevel(pPr.getOutlineLvl()));
   
//    if (pPr.getOverflowPunct() != null)
//      dest.setOverflowPunct(pPr.getOverflowPunct());
    if (pPr.getPageBreakBefore() != null)
      properties.add(new PageBreakBefore(pPr.getPageBreakBefore()));
View Full Code Here

TOP

Related Classes of org.docx4j.model.properties.paragraph.OutlineLevel

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.