在word文档中,段落缩进包括:左缩进,右缩进,首行缩进和悬挂缩进。该文将介绍如何使用spire.doc在java应用程序中,设置word文档段落缩进样式。
import com.spire.doc.*;
import com.spire.doc.documents.*;
public class wordparaindent{
public static void main(string[] args) {
//加载文档
document document= new document();
document.loadfromfile("sample.docx");
//获取第一个section
section section = document.getsections().get(0);
//获取第二段并将缩进格式设为左缩进
paragraph para1 = section.getparagraphs().get(1);
para1.getformat().setleftindent(30);
//获取第三段并将缩进格式设为右缩进
paragraph para2 = section.getparagraphs().get(2);
para2.getformat().setrightindent(40);
//获取第四段并将缩进格式设为首行缩进
paragraph para3 = section.getparagraphs().get(3);
para3.getformat().setfirstlineindent(40);
//获取第五段并将缩进格式设为悬挂缩进
paragraph para4 = section.getparagraphs().get(4);
para4.getformat().setfirstlineindent(-40);
document.savetofile("out/result.docx", fileformat.docx_2013);
}
}
效果图: