use of org.docx4j.wml.BooleanDefaultTrue in project docx4j-template by vindell.
the class WordprocessingMLPackageRender method addBoldStyle.
/**
* 本方法给可运行块属性添加粗体属性. BooleanDefaultTrue是设置b属性的Docx4j对象, 严格
* 来说我们不需要将值设置为true, 因为这是它的默认值.
*/
public void addBoldStyle(RPr runProperties) {
BooleanDefaultTrue b = new BooleanDefaultTrue();
b.setVal(true);
runProperties.setB(b);
}
use of org.docx4j.wml.BooleanDefaultTrue in project docx4j-template by vindell.
the class Docx4j_工具类_S3_Test method setParagraphSuppressLineNum.
/**
* @Description: 设置段落是否禁止行号(禁止用于当前行号)
*/
public void setParagraphSuppressLineNum(P p) {
PPr ppr = getPPr(p);
BooleanDefaultTrue line = ppr.getSuppressLineNumbers();
if (line == null) {
line = new BooleanDefaultTrue();
}
line.setVal(true);
ppr.setSuppressLineNumbers(line);
}
use of org.docx4j.wml.BooleanDefaultTrue in project docx4j-template by vindell.
the class TableWithStyledContent method addBoldStyle.
/**
* 本方法给可运行块属性添加粗体属性. BooleanDefaultTrue是设置b属性的Docx4j对象, 严格
* 来说我们不需要将值设置为true, 因为这是它的默认值.
*/
private static void addBoldStyle(RPr runProperties) {
BooleanDefaultTrue b = new BooleanDefaultTrue();
b.setVal(true);
runProperties.setB(b);
}
Aggregations