Examples of TcMar


Examples of org.docx4j.wml.TcMar

 
  public static void createProperties(List<Property> properties, TcPr tcPr) {
    createPropertiesTable(properties, tcPr);

    if (tcPr.getTcMar() != null) {
      TcMar tcMar = tcPr.getTcMar();
      if (tcMar.getTop() != null)
        properties.add(new CellMarginTop(tcMar.getTop()));
      if (tcMar.getBottom() != null)
        properties.add(new CellMarginBottom(tcMar.getBottom()));
      if (tcMar.getLeft() != null)
        properties.add(new CellMarginLeft(tcMar.getLeft()));
      if (tcMar.getRight() != null)
        properties.add(new CellMarginRight(tcMar.getRight()));
    }
  }
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.