文档彩票走势图>>Aspose.PDF for .NET开发者使用教程>>PDF管理控件Aspose.PDF for .Net使用教程(四十四):在标题中应用编号样式
PDF管理控件Aspose.PDF for .Net使用教程(四十四):在标题中应用编号样式
Aspose.PDF for .NET是一种高PDF处理和解析API,用于在跨平台应用程序中执行文档管理和操作任务。API可以轻松用于生成、修改、转换、渲染、保护和打印PDF文档,而无需使用Adobe Acrobat。此外,API还提供PDF压缩选项,表格创建和操作,图形和图像功能,广泛的超链接功能,印章和水印任务,扩展的安全控制和自定义字体处理。
在接下来的系列教程中,将为开发者带来Aspose.PDF for .NET的一系列使用教程,例如进行文档间的转换,如何标记PDF文件,如何使用表单和图表等等。本文将介绍如何在标题中应用编号样式。
>>Aspose.PDF for .NET更新至最新版v20.7,欢迎下载体验。
标题是任何文档的重要部分。作家总是试图使标题对读者更加突出和有意义。如果文档中的标题不止一个,那么作者可以使用多种方法来组织这些标题。组织标题的最常见方法之一是用编号样式编写标题。
Aspose.PDF提供了许多预定义的编号样式。这些预定义的编号样式存储在枚举NumberingStyle中。下面给出NumberingStyle枚举的预定义值及其说明:
标题类型 | 描述 |
---|---|
阿拉伯数字 | 阿拉伯类型,例如1,1.1,... |
罗马数字 | 罗马鞋面类型,例如I,I.II,… |
数字罗马小写 | 罗马小写字母,例如i,i.ii,… |
字母大写 | 英文大写字母,例如A,AB,… |
字母小写 | 英文小写字母,例如a,ab,… |
Aspose.PDF.Heading类的Style属性用于设置标题的编号样式。
下面的示例中给出了获得上图所示输出的源代码。
// The path to the documents directory. string dataDir = RunExamples.GetDataDir_AsposePdf_Headings(); Document pdfDoc = new Document(); pdfDoc.PageInfo.Width = 612.0; pdfDoc.PageInfo.Height = 792.0; pdfDoc.PageInfo.Margin = new Aspose.Pdf.MarginInfo(); pdfDoc.PageInfo.Margin.Left = 72; pdfDoc.PageInfo.Margin.Right = 72; pdfDoc.PageInfo.Margin.Top = 72; pdfDoc.PageInfo.Margin.Bottom = 72; Aspose.Pdf.Page pdfPage = pdfDoc.Pages.Add(); pdfPage.PageInfo.Width = 612.0; pdfPage.PageInfo.Height = 792.0; pdfPage.PageInfo.Margin = new Aspose.Pdf.MarginInfo(); pdfPage.PageInfo.Margin.Left = 72; pdfPage.PageInfo.Margin.Right = 72; pdfPage.PageInfo.Margin.Top = 72; pdfPage.PageInfo.Margin.Bottom = 72; Aspose.Pdf.FloatingBox floatBox = new Aspose.Pdf.FloatingBox(); floatBox.Margin = pdfPage.PageInfo.Margin; pdfPage.Paragraphs.Add(floatBox); TextFragment textFragment = new TextFragment(); TextSegment segment = new TextSegment(); Aspose.Pdf.Heading heading = new Aspose.Pdf.Heading(1); heading.IsInList = true; heading.StartNumber = 1; heading.Text = "List 1"; heading.Style = NumberingStyle.NumeralsRomanLowercase; heading.IsAutoSequence = true; floatBox.Paragraphs.Add(heading); Aspose.Pdf.Heading heading2 = new Aspose.Pdf.Heading(1); heading2.IsInList = true; heading2.StartNumber = 13; heading2.Text = "List 2"; heading2.Style = NumberingStyle.NumeralsRomanLowercase; heading2.IsAutoSequence = true; floatBox.Paragraphs.Add(heading2); Aspose.Pdf.Heading heading3 = new Aspose.Pdf.Heading(2); heading3.IsInList = true; heading3.StartNumber = 1; heading3.Text = "the value, as of the effective date of the plan, of property to be distributed under the plan onaccount of each allowed"; heading3.Style = NumberingStyle.LettersLowercase; heading3.IsAutoSequence = true; floatBox.Paragraphs.Add(heading3); dataDir = dataDir + "ApplyNumberStyle_out.pdf"; pdfDoc.Save(dataDir);
还想要更多吗?您可以点击阅读【2020 · Aspose最新资源整合】,查找需要的教程资源。如果您有任何疑问或需求,请随时加入Aspose技术交流群(642018183),我们很高兴为您提供查询和咨询。