java aspose words 首行缩进
时间: 2023-11-04 22:54:26 浏览: 241
aspose words for Java
5星 · 资源好评率100%
在使用Aspose.Words进行首行缩进时,可以通过设置段落的缩进属性来实现。下面是一个示例代码:
```java
import com.aspose.words.*;
public class WordIndentation {
public static void main(String[] args) throws Exception {
// 加载文档
Document doc = new Document("input.docx");
// 获取第一个段落
Paragraph firstParagraph = doc.getFirstSection().getBody().getFirstParagraph();
// 设置首行缩进为36磅
firstParagraph.getParagraphFormat().setFirstLineIndent(36);
// 保存文档
doc.save("output.docx");
}
}
```
上面的示例代码中,我们加载了一个名为`input.docx`的文档,并获取了第一个段落。然后,通过设置段落格式的`FirstLineIndent`属性为36,来实现首行缩进。最后,我们将更改后的文档保存为`output.docx`。
阅读全文