首页 > 代码库 > DocX开源WORD操作组件的学习系列二
DocX开源WORD操作组件的学习系列二
创建目录
效果图
static void AddToc() { Console.WriteLine("\tAddToc()"); using (var document = DocX.Create(@"docs\Toc2.docx")) { document.InsertTableOfContents("1 目录", TableOfContentsSwitches.O | TableOfContentsSwitches.U | TableOfContentsSwitches.Z | TableOfContentsSwitches.H, "Heading1"); // document.InsertSectionPageBreak();//分页 var h1 = document.InsertParagraph("2 测试1"); h1.StyleName = "Heading1"; document.InsertParagraph("Some very interesting content here"); var h2 = document.InsertParagraph("3 测试2"); h2.StyleName = "Heading1"; document.InsertParagraph("Some very interesting content here as well"); var h3 = document.InsertParagraph("3.1 测试3.1"); h3.StyleName = "Heading2"; var h4 = document.InsertParagraph("3.1.1 测试3.1.1"); h4.StyleName = "Heading3"; var h5 = document.InsertParagraph("4 测试4"); h5.StyleName = "Heading1"; document.InsertParagraph("Not so very interesting...."); document.Save(); } }
DocX开源WORD操作组件的学习系列二
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。