计算机系统应用教程网站

网站首页 > 技术文章 正文

支持动态插入书签链接!Aspose.Words v19.10新功能你都了解吗?

btikc 2024-10-26 08:49:36 技术文章 8 ℃ 0 评论

Aspose.Words for .NET是用于执行各种文档管理和操作任务,支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。同时支持所有流行的Word处理文件格式,并允许将Word文档导出或转换为固定布局文件格式和最常用的图像、多媒体格式。

Aspose.Words for .Net更新至新版本v19.10,支持动态插入指向LINQ Reporting Engine的文档书签的链接,允许指定文本在文档中流动的方向,修复多项Bug,我们一起来看一看新功能详解吧!

主要特点

  • 实现的DocumentDirection选项允许指定文本在文档中流动的方向。
  • 为“ graphicFrame”容器内的图形实现了适当的缩放,以进行DrawingML渲染。
  • 渲染时改进了OMath对象的“内联/非内联”验证。
  • 支持动态插入指向LINQ Reporting Engine的文档书签的链接。

公共API更改示例详解

▲实现了DocumentDirection选项,该选项允许指定文本在文档中流动的方向

添加了新的公开枚举:

////// Allows to specify the direction to flow the text in a document.
///public enum DocumentDirection

在TxtLoadOptions类中添加了新的公共选项:

////// Gets or sets a document direction.
/// The default value is. 
///public DocumentDirection DocumentDirection

用例:

TxtLoadOptions loadOptions = new TxtLoadOptions();
loadOptions.DocumentDirection = DocumentDirection.Auto;
 
Document doc = new Document("SomeRtlText.txt", loadOptions);
 
Paragraph paragraph = doc.FirstSection.Body.FirstParagraph;
Console.WriteLine(paragraph.ParagraphFormat.Bidi);

点击下方“了解更多”免费下载Aspose.Words for .NET最新版

↓↓↓

本文暂时没有评论,来添加一个吧(●'◡'●)

欢迎 发表评论:

最近发表
标签列表