在 Spire.Doc for .NET 的帮助下,开发人员可以通过调用 p.ListFormat.ApplyBulletStyle() 方法轻松为现有 Word 文档设置项目符号样式进行格式化。本文将向您展示如何将 HTML 列表转换为单词并在 C# 中为单词列表设置项目符号样式。
Spire.Doc for.NET 最新下载https://www.evget.com/product/3368/download
首先,请查看结果word文档的有效截图:
步骤如下:
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产品
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。