Package org.docx4j.model.properties.run

Examples of org.docx4j.model.properties.run.TextDirection


//      dest.setRPrChange(rPr.getRPrChange());
//    if (rPr.getRStyle() != null)
//      dest.setRStyle(rPr.getRStyle());
   
    if (rPr.getRtl() != null)
      properties.add(new TextDirection(rPr.getRtl() ));
   
//    if (rPr.getShadow() != null)
//      dest.setShadow(rPr.getShadow());
    if (rPr.getShd() != null)
      properties.add(new RShading(rPr.getShd()));
View Full Code Here

TOP

Related Classes of org.docx4j.model.properties.run.TextDirection

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.