文档彩票走势图>>Aspose.Words开发者指南>>Aspose.Words for .NET使用文档教程(8):如何获取字体行间距
Aspose.Words for .NET使用文档教程(8):如何获取字体行间距
Aspose.Words For .Net是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。此外,API支持所有流行的Word处理文件格式,并允许将Word文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。
【下载Aspose.Words for .NET最新试用版】
获取字体行间距
字体的行间距是两个连续文本行的基线之间的垂直距离。因此,行间距包括行之间的空白空间以及字符本身的高度。
LineSpacing属性是在Font类中引入的,以获取此值,如下面给出的示例所示:
//文档目录的路径。 string dataDir = RunExamples.GetDataDir_WorkingWithDocument(); //初始化文档。 Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.Font.Name = "Calibri"; builder.Writeln("qText"); //获得行间距。 Font font = builder.Document.FirstSection.Body.FirstParagraph.Runs[0].Font; Console.WriteLine($"lineSpacing = {font.LineSpacing}");
段落样式分隔符
Aspose.Words将一个公共属性BreakIsStyleSeparator 提供到Paragraph类中,允许识别Style Separator Paragraph,如下面给出的示例所示:
//文档目录的路径。 string dataDir = RunExamples.GetDataDir_RenderingAndPrinting(); //初始化文档。 string fileName = "TestFile.doc"; Document doc = new Document(dataDir + fileName); foreach (Paragraph paragraph in doc.GetChildNodes(NodeType.Paragraph, true)) { if (paragraph.BreakIsStyleSeparator) { Console.WriteLine("Separator Found!"); } }
想要获取Aspose.Words正版授权可联系哦~
ASPOSE技术交流QQ群已开通,各类资源及时分享,欢迎交流讨论!(扫描下方二维码加入群聊)