Java Code Examples for org.docx4j.wml.RPr#setImprint()
The following examples show how to use
org.docx4j.wml.RPr#setImprint() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: WmlElementUtils.java From docx4j-template with Apache License 2.0 | 4 votes |
/** * @Description: 阴文 */ public static void addRPrImprintStyle(RPr runProperties) { BooleanDefaultTrue imprint = new BooleanDefaultTrue(); imprint.setVal(true); runProperties.setImprint(imprint); }
Example 2
Source File: Docx4j_工具类_S3_Test.java From docx4j-template with Apache License 2.0 | 4 votes |
/** * @Description: 阴文 */ public void addRPrImprintStyle(RPr runProperties) { BooleanDefaultTrue imprint = new BooleanDefaultTrue(); imprint.setVal(true); runProperties.setImprint(imprint); }