彩票走势图

logo E-iceblue中文文档
文档彩票走势图>>E-iceblue中文文档>>在word文档中设置段落间距

在word文档中设置段落间距


Spire.Doc for .NET是一款专门对 Word 文档进行操作的 .NET 类库。在于帮助开发人员无需安装 Microsoft Word情况下,轻松快捷高效地创建、编辑、转换和打印 Microsoft Word 文档。拥有近10年专业开发经验Spire系列办公文档开发工具,专注于创建、编辑、转换和打印Word/PDF/Excel等格式文件处理,小巧便捷。 

E-iceblue 功能类库Spire 系列文档处理组件均由中国本土团队研发,不依赖第三方软件,不受其他国家的技术或法律法规限制,同时适配国产操作系统如中科方德、中标麒麟等,兼容国产文档处理软件 WPS(如 .wps/.et/.dps 等格式

Spire.Doc for.NET 最新下载

段落是word文档中非常重要的元素。它功能强大并且具有许多特性。Spire.Doc 是专为开发人员设计的 .NET 组件,可让您轻松灵活地操作段落。

 我们网站上有介绍如何设置对齐、缩进和项目符号的文档。这篇文章向您介绍了如何在word文档中设置段落间距。

第一步:创建word文档。

Document document = new Document();
Section section = document.AddSection();

第 2 步:将第一段添加到文档中。

Paragraph paragraph = section.AddParagraph();
paragraph.AppendText("Thank you for requesting a trial version of Spire.Doc. The component will work normally except for an evaluation warning message. Once you purchase a license file, the evaluation warning will disappeare.");

第 3 步设置第一段的行距。

paragraph.Format.LineSpacing = 20;

第4步设置第一段的间距。

paragraph.Format.BeforeSpacing = 30;

第 5 步设置第一段之后的间距

paragraph.Format.AfterSpacing = 15;

第 6 步保存文档。

document.SaveToFile("result.doc", FileFormat.Doc);

完整代码

using Spire.Doc;
using Spire.Doc.Documents;
namespace Spacing
{
class Program
{

static void Main(string[] args)
{
Document document = new Document();
Section section = document.AddSection();

//add the first paragraph
Paragraph paragraph = section.AddParagraph();
paragraph.AppendText("Thank you for requesting a trial version of Spire.Doc. The component will work normally except for an evaluation warning message. Once you purchase a license file, the evaluation warning will disappeare.");
paragraph.Format.FirstLineIndent = 20;

//set the Line spacing
paragraph.Format.LineSpacing = 20;

//set the Spacing Before
paragraph.Format.BeforeSpacing = 30;

//set the Spacing After
paragraph.Format.AfterSpacing = 15;

//add the second paragraph
Paragraph paragraph2 = section.AddParagraph();
paragraph2.AppendText("Spire.Doc (Pack) is a compilation of Spire.Doc for .NET, Spire.Doc for Silverlight and Spire.Doc for WPF. It is a professional and powerful Word component which enables you to generate, load, write, edit and save Word document on .NET, Silverlight and WPF. With Spire.Doc, you can create a large range of applications.");
paragraph2.Format.FirstLineIndent = 20;

//set the Line spacing
paragraph2.Format.LineSpacing = 25;

//save the document
document.SaveToFile("result.doc", FileFormat.Doc);

System.Diagnostics.Process.Start("result.doc");

}
}
}

截图

Set Spacing of Paragraphs in word document


欢迎下载|体验更多E-iceblue产品

获取更多信息请咨询  ;技术交流Q群(767755948)


扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP