彩票走势图

Word控件Spire.Doc 【段落处理】教程(十):如何在 C# 中将新段落插入到 Word 文档中

翻译|使用教程|编辑:胡涛|2022-05-16 11:23:05.127|阅读 285 次

概述:本文解释并描述了如何使用 Spire.Doc 在 C# 中的现有 word 文档中插入新段落。

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

相关链接:

借助 Spire.Doc,开发人员可以轻松地将多个 word 文档合并为一个word 文档。合并文档后,您可能需要插入注释或新段落以添加一些描述。本文解释并描述了如何使用 Spire.Doc 在 C# 中的现有 word 文档中插入新段落。

Spire.Doc for.NET 最新下载

下面的示例演示如何将段落插入到文档中。

第 1 步:创建一个新文档并从文件加载。

Document document = new Document();
document.LoadFromFile("sample.docx", FileFormat.Docx);

第 2 步:附加文本并设置字体格式。

Paragraph paraInserted = new Paragraph(document);
TextRange textRange1 = paraInserted.AppendText("This is a inserted paragraph, I want to insert this paragraph in the start of document.");
textRange1.CharacterFormat.TextColor = Color.Blue;
textRange1.CharacterFormat.FontSize = 15;
textRange1.CharacterFormat.UnderlineStyle = UnderlineStyle.Dash;

第 3 步:插入新段落。

document.Sections[0].Paragraphs.Insert(0, paraInserted);

第 4 步:将文档保存到文件中。

document.SaveToFile("result.docx", FileFormat.Docx);

有效截图

How to insert a new paragraph to word document in C#

完整代码


using Spire.Doc;
using Spire.Doc.Documents;
using Spire.Doc.Fields;
using System.Drawing;
namespace InsertParagh
{
class Program
{

static void Main(string[] args)
{
Document document = new Document();
document.LoadFromFile("sample.docx", FileFormat.Docx);

Paragraph paraInserted = document.Sections[0].AddParagraph();
TextRange textRange1 = paraInserted.AppendText("This is a inserted paragraph, I want to insert this paragraph in the start of document.");
textRange1.CharacterFormat.TextColor = Color.Blue;
textRange1.CharacterFormat.FontSize = 15;
textRange1.CharacterFormat.UnderlineStyle = UnderlineStyle.Dash;

document.Sections[0].Paragraphs.Insert(0, document.Sections[0].Paragraphs[document.Sections[0].Paragraphs.Count - 1]);

document.SaveToFile("result.docx", FileFormat.Docx);
}
}
}



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

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


标签:

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP