Package org.openxml4j.document.wordprocessing.model.table

Examples of org.openxml4j.document.wordprocessing.model.table.TableBorder


    // build the table info
    int nbCol = 3;
    TableDescription tableDesc = new TableDescription(
        ParagraphAlignment.LEFT);
    // do not use the standar border, make our own, color red, with -.-
    TableBorder border = new TableBorder(BorderStyle.BORDER_STYLE_DOT_DASH,
        8, "FF0000");
    tableDesc.setBorder(border);

    // build cells and lines
    for (int lineNo = 0; lineNo < 5; lineNo++) {
View Full Code Here

TOP

Related Classes of org.openxml4j.document.wordprocessing.model.table.TableBorder

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.