please tell me how to change table height in docx4j
thanks in advace..
It is currently Tue Nov 26, 2024 11:22 pm
<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<cp:category>category</cp:category>
<cp:contentStatus>contentStatus</cp:contentStatus>
<cp:contentType>contentType</cp:contentType>
<dc:creator>creator</dc:creator>
<dc:description>description</dc:description>
<dc:identifier>identifier</dc:identifier>
<cp:keywords>keywords</cp:keywords>
<dc:language>language</dc:language>
<cp:lastModifiedBy>lastModifiedBy</cp:lastModifiedBy>
<cp:lastPrinted>2011-09-29T08:55:00Z</cp:lastPrinted>
<cp:revision>1</cp:revision>
<dc:subject>subject</dc:subject>
<dc:title>title</dc:title>
<cp:version>version</cp:version>
<dcterms:created>2014-02-04T16:25:00Z</dcterms:created>
<dcterms:modified>2014-02-04T16:26:00Z</dcterms:modified>
</cp:coreProperties>
Tbl table = factory.createTbl();
table.setTblPr(new TblPr());
CTBorder border = new CTBorder();
[u]border.setColor("maroon");[/u]
border.setSz(new BigInteger("10"));
border.setSpace(new BigInteger("0"));
border.setVal(STBorder.SINGLE);
TblBorders borders = new TblBorders();
borders.setBottom(border);
borders.setLeft(border);
borders.setRight(border);
borders.setTop(border);
borders.setInsideH(border);
borders.setInsideV(border);
Total posts 10111 • Total topics 2842 • Total members 2074