彩票走势图

Word控件Spire.Doc 【段落处理】教程(六):如何在word文档中设置段落间距

翻译|使用教程|编辑:胡涛|2022-05-11 16:02:08.717|阅读 245 次

概述:本文主要介绍了如何在word文档中设置段落间距,欢迎查阅!

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

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

Spire.Doc for.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产品

如需获取更多产品相关信息请咨询  


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP