彩票走势图

Word控件Spire.Doc 【文本】教程(4) ;C#如何在Word中插入符号

翻译|使用教程|编辑:胡涛|2022-07-21 11:29:56.670|阅读 122 次

概述:本文将介绍C#如何在Word中插入符号,欢迎查阅!

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

相关链接:

有时我们需要在段落中插入符号或特殊字符。文章介绍了用c#代码在Word中插入符号的解决方案。在名为 Spire.Doc的Word .NET API的帮助下,我们将使用 Ä 和 Ë 作为符号示例来完成该过程。

Spire.Doc for.NET 最新下载

首先我们需要完成准备工作:

  • 下载最新的 Spire.Doc并将其安装在您的机器上。
  • 添加 Spire.Doc.dll 文件作为参考。
  • 打开bin文件夹,选择.NET 4.0下的三个dll文件。
  • 右键单击属性并在其菜单中选择属性。
  • 将目标框架设置为 .NET 4。
  • 添加 Spire.Doc 作为命名空间。

这里是代码的解释。

第 1 步:创建 Spire.Doc.Document 的实例。

Document document = new Document();

第 2 步:添加一个部分。

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

第 3 步:添加一个段落。

Paragraph paragraph = section.AddParagraph();

第 4 步:使用 unicode 字符创建符号 Ä。

TextRange tr = paragraph.AppendText('\u00c4'.ToString());

其实下面的step5和step6只是根据你的需求选择。

第 5 步:设置符号 Ä 的颜色。

tr.CharacterFormat.TextColor = Color.Red;

第 6 步:添加符号Ë。

paragraph.AppendText('\u00cb'.ToString());

第 7 步:保存到 Word 文件。

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

这是完整的代码

[C#]

using Spire.Doc;
using Spire.Doc.Documents;
using Spire.Doc.Fields;
using System.Drawing;
namespace InsertSymbol
{

class Program
{
static void Main(string[] args)
{
Document document = new Document();
Section section = document.AddSection();
Paragraph paragraph = section.AddParagraph();
TextRange tr = paragraph.AppendText('\u00c4'.ToString());
tr.CharacterFormat.TextColor = Color.Red;
paragraph.AppendText('\u00cb'.ToString());
document.SaveToFile("sample.docx", FileFormat.Docx);
}

}
}


预览效果截图

在word中插入符号


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

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


标签:

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP