设置 Word 项目符号样式
Spire.Doc for .NET是一款专门对 Word 文档进行操作的 .NET 类库。在于帮助开发人员无需安装 Microsoft Word情况下,轻松快捷高效地创建、编辑、转换和打印 Microsoft Word 文档。拥有近10年专业开发经验Spire系列办公文档开发工具,专注于创建、编辑、转换和打印Word/PDF/Excel等格式文件处理,小巧便捷。
E-iceblue 功能类库Spire 系列文档处理组件均由中国本土团队研发,不依赖第三方软件,不受其他国家的技术或法律法规限制,同时适配国产操作系统如中科方德、中标麒麟等,兼容国产文档处理软件 WPS(如 .wps/.et/.dps 等格式
Spire.Doc for.NET 最新下载
Word Bullet 可以将多个段落格式化为列表。它可以用项目符号强调段落并吸引读者的注意力。使用项目符号,列出的段落将自动缩进符号,可以是点、数字或其他自定义符号(如小星、三角形、箭头等)。
加载文档后,获取要设置项目符号样式的段落,然后调用 p.ListFormat.ApplyBulletStyle() 方法进行格式化。此外,您可以设置当前列表的 NumberPosition 属性以获取项目符号和段落内容之间的间距。下载并安装 Spire.Doc for .NET。然后使用以下代码设置 Word 项目符号样式。
[C#]
using Spire.Doc; using Spire.Doc.Documents; namespace WordBullets { class Program { static void Main(string[] args) { //Load Document Document doc = new Document(); doc.LoadFromFile(@"E:\References.docx"); //Set Bullet Style Section s = doc.Sections[0]; for (int i = 1; i< s.Paragraphs.Count; i++) { Paragraph p = s.Paragraphs[i]; p.ListFormat.ApplyBulletStyle(); p.ListFormat.CurrentListLevel.NumberPosition = -10; } //Save and Launch doc.SaveToFile("sample.docx", FileFormat.Docx); System.Diagnostics.Process.Start("sample.docx"); } } }
[VB.NET]
Imports Spire.Doc Imports Spire.Doc.Documents Namespace WordBullets Friend Class Program Shared Sub Main(ByVal args() As String) 'Load Document Dim doc As New Document() doc.LoadFromFile("E:\References.docx") 'Set Bullet Style Dim s As Section = doc.Sections(0) For i As Integer = 1 To s.Paragraphs.Count - 1 Dim p As Paragraph = s.Paragraphs(i) p.ListFormat.ApplyBulletStyle() p.ListFormat.CurrentListLevel.NumberPosition = -10 Next i 'Save and Launch doc.SaveToFile("sample.docx", FileFormat.Docx) System.Diagnostics.Process.Start("sample.docx") End Sub End Class End Namespace
Spire.Doc 是一个独立的组件,使开发人员/程序员能够在 WPF、.NET 和 Silverlight 中生成、打开、编写、编辑和保存 Word 文档,而无需在系统上安装 Microsoft Word。
欢迎下载|体验更多E-iceblue产品
获取更多信息请咨询 ;技术交流Q群(767755948)