Word控件Spire.Doc 【段落处理】教程(七):如如何通过在 C# 中附加 HTML 代码来设置 word 项目符号样式

在 Spire.Doc for .NET 的帮助下,开发人员可以通过调用 p.ListFormat.ApplyBulletStyle() 方法轻松为现有 Word 文档设置项目符号样式进行格式化。本文将向您展示如何将 HTML 列表转换为单词并在 C# 中为单词列表设置项目符号样式。

Spire.Doc for.NET 最新下载

icon-default.png?t=M7J4

https://www.evget.com/product/3368/download

首先,请查看结果word文档的有效截图:

步骤如下:

第 1 步:创建一个新文档并在文档中添加一个部分。

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

第 2 步:通过附加 HTML 将单词列表添加到段落中。

Paragraph paragraph = section.AddParagraph();
paragraph.AppendHTML("<ol><li>Version 1</li><li>Version 2</li><li>Version 3</li></ol>");

第 3 步:设置段落的项目符号样式。

foreach (Paragraph p in section.Paragraphs)
{
p.ApplyStyle(BuiltinStyle.heading2);
p.ListFormat.CurrentListLevel.NumberPosition = 20;
p.ListFormat.CurrentListLevel.TextPosition = 30;
}

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

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

完整代码

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

static void Main(string[] args)
{
Document document = new Document();
Section section = document.AddSection();
Paragraph paragraph = section.AddParagraph();
paragraph.AppendHTML("<ol><li>Version 1</li><li>Version 2</li><li>Version 3</li></ol>");

foreach (Paragraph p in section.Paragraphs)
{

p.ApplyStyle(BuiltinStyle.heading2);

p.ListFormat.CurrentListLevel.NumberPosition = 20;

p.ListFormat.CurrentListLevel.TextPosition = 30;

}

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

}
}
}

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

相关文章

显卡天梯图2024最新版,显卡是电脑进行图形处理的重要设备,...
初始化电脑时出现问题怎么办,可以使用win系统的安装介质,连...
todesk远程开机怎么设置,两台电脑要在同一局域网内,然后需...
油猴谷歌插件怎么安装,可以通过谷歌应用商店进行安装,需要...
虚拟内存这个名词想必很多人都听说过,我们在使用电脑的时候...