提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
原创|产品更新|编辑:李显亮|2021-03-08 10:03:23.350|阅读 277 次
概述:Aspose.Words for .Net更新至新版本v21.3,此常规的每月版本中有90项改进和修复,包括新添扩展字体API,新添LINQ Reporting Engine支持的Select和SelectMany扩展方法等新功能,欢迎下载体验。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
Aspose.Words for .Net是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。2021年3月更新来啦,.NET版Aspose.Words更新至v21.3新版本!
主要特点如下:
>>你可以点击这里下载Aspose.Words for .NET v21.3测试体验。
序号 | 概括 | 类别 |
WORDSNET-7788 | 支持Font.Fill属性,并在API中提供公共成员 | 新功能 |
WORDSNET-17851 | LINQ报表引擎——支持选择扩展方法 | 新功能 |
WORDSNET-18173 | 实现MERGESEQ领域的全部功能 | 新功能 |
WORDSNET-12810 | 提供bool FontSettings.SetFontsFolder重载 | 新功能 |
WORDSNET-20554 | 支持LINQ报表引擎双向同时动态合并单元格 | 新功能 |
WORDSNET-21425 | LINQ 报表引擎--支持SelectMany扩展方法 | 新功能 |
WORDSNET-21189 | 增加获取StructuredocumentTagRangeStart内容的功能 | 新功能 |
WORDSNET-21785 | 从样式库中删除样式 | 新功能 |
WORDSNET-9676 | Node.NextSibling的错误结果 | 增强功能 |
完整更新细则请参考:【Aspose.Words for .NET v21.3更新说明】
现在,不仅可以从ShapeBase中访问Fill属性,还可以从Font对象中访问该属性:
此外,以下新的公共属性已添加到Fill类中:
此外,以下新的公共枚举已添加到Aspose.Words.Drawing命名空间中:
用例如下:
// Open some document with text effects. const string myDir = @"example\"; Document doc = new Document(myDir + "TextTwoColorGradient.docx"); // Get Fill object for Font of the first Run. Fill fill = doc.FirstSection.Body.FirstParagraph.Runs[0].Font.Fill; // Check Fill properties of the Font. Console.WriteLine("The type of the fill is: {0}", fill.FillType); Console.WriteLine("It is{0} visible.", fill.Visible ? "" : " not"); Console.WriteLine("The foreground color of the fill is: {0}", fill.ForeColor); Console.WriteLine("The background color of the fill is: {0}", fill.BackColor); Console.WriteLine("The fill is transparent at {0}%", fill.Transparency * 100); Console.WriteLine("Note the opacity is opposite to transparency and has value: {0}%", fill.Opacity * 100); // You can change, for example, the foreground color. fill.ForeColor = Color.Yellow; // Or even make it invisible. fill.Visible = false; // But let's make it visible again with foreground color Red. fill.ForeColor = Color.Green; // Note, it now has Solid type with 100% opacity. Console.WriteLine("\nThe fill is changed:"); Console.WriteLine("The type of the fill is: {0}", fill.FillType); Console.WriteLine("The foreground color of the fill is: {0}", fill.ForeColor); Console.WriteLine("The fill opacity is {0}%", fill.Opacity * 100); // Let's also change the transparency. fill.Transparency = 0.25; Console.WriteLine("\nThe fill is changed once again:"); Console.WriteLine("The fill transparency is {0}%", fill.Transparency * 100); doc.Save(myDir + "TextTwoColorGradient Out.docx"); /* This code example produces the following results: The type of the fill is: Gradient It is visible. The foreground color of the fill is: Color [A=255, R=128, G=0, B=0] The background color of the fill is: Color [A=255, R=0, G=0, B=0] The fill is transparent at 16% Note the opacity is opposite to transparency and has value: 84% The fill is changed: The type of the fill is: Solid The foreground color of the fill is: Color [A=255, R=0, G=128, B=0] The fill opacity is 100% The fill is changed once again: The fill transparency is 25% */
以下公共属性已添加到StructuredDocumentTagRangeStart类:
以下公共方法已添加到StructuredDocumentTagRangeStart类中:
这些更改允许枚举范围化结构化文档标签的子节点。为了客户方便,功能遵循CompositeNode模式并返回实时集合。
用例:说明如何使用StructuredDocumentTagRangeStart的子节点
Document doc = new Document("document-containing-ranged-structured-document-tag"); StructuredDocumentTagRangeStart tag = (StructuredDocumentTagRangeStart)doc.FirstSection.Body.FirstChild; Console.WriteLine(tag.ChildNodes.Count); foreach(Node node in tag.ChildNodes) Console.WriteLine(node.NodeType); foreach(Node node in tag.GetChildNodes(NodeType.Run, true)) Console.WriteLine(node.GetText());+
以下公共属性已添加到FontSourceBase类:
用例:
FontSettings settings = new FontSettings(); settings.SetFontsFolder("bad folder?", false); FontSourceBase source = settings.GetFontsSources()[0]; IWarningCallback wc = new CustomWarningCallback(); source.WarningCallback = wc; IListfontInfos = source.GetAvailableFonts(); Console.WriteLine((wc as IList)[0].Description);
输出如下:
Error loading font from the folder "bad folder?": Illegal characters in path.
如果你想试用Aspose的全部完整功能,可 联系在线客服获取30天临时授权体验。
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@cahobeh.cn
JS开发工具WebStorm v2024.3全新发布,新版本主要改进包括增强的框架组件导航和重命名等,欢迎下载最新版体验!
新版本与 .NET Framework 更改保持一致。主要更新包括终止对 .NET 4.0/4.5 的支持、停止使用 MVC4 以及将 MVC5 升级到 .NET 4.6.2,欢迎下载体验!
本文将介绍MFC界面开发组件BCGControlBar Professional for MFC v36.0的一些亮点,欢迎下载相关产品体验~
报表工具DevExpress Reporting v24.2已经在本月发布,新版本进一步增强了AI功能,欢迎加入社群及时获取最新信息!
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@cahobeh.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢