网站首页 > 技术文章 正文
九月已来,.NET版Aspose.Words也为大家带来了9月的新版本!Aspose.Words for .Net是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。
主要特点如下:
- 公开了VbaReferenceCollection和相关类型
- 实现了对加载 PDF 文档时脚注的支持。
- 实现了元文件与EMF+容器的渲染。
- 扩展了FormField字体格式化API。
>>你可以点击文末“了解更多”下载Aspose.Words for .NET v20.9测试体验
具体更新内容
- WORDSNET-20589 PDF到DOCX-脚注 新功能
- WORDSNET522 允许整体上将字体格式应用于FormField 新功能
- WORDSNET-20289 通过Words-HTML-Words往返传递正确的边框参数 新功能
- WORDSNET-13678 提供一种从Word文档中删除模板引用的方法 新功能
- WORDSNET-20986 RTF转换为DOCX后,“保留下一个”属性被更改 增强功能
- WORDSNET-19977 Aspose.Words 20.2.0在Alpine Linux容器中不起作用 增强功能
- WORDSNET-20868 加载RTF时出现UnsupportedFileFormatException 增强功能
新功能解析
①WORDSNET-522——更改了“ FormField.Font”属性的行为
当前允许将字体格式整体应用于FormField。设置新的Font属性后,它们将对整个FormField(包括字段值)生效。下述用例整体说明如何将字体格式应用于FormField:
Document doc = new Document("in.doc");
doc.Range.FormFields[0].Font.Size = 20;
doc.Range.FormFields[0].Font.Color = Color.Red;
doc.Save("out.doc");
②WORDSNET-13678——VbaReferenceCollection和相关类型公开
实现了一个新的VbaReferenceCollection类:
实现了一个新的VbaReference类:
实现了一个新的公共枚举VbaReferenceType:
在VbaProject类中添加了一个新的公共属性:
用例。说明如何从VbaProject的引用集合中删除一些引用:
public void Main()
{
Document doc = new Document("test.doc");
// Find and remove the reference with some LibId path.
const string brokenPath = "brokenPath.dll";
VbaReferenceCollection references = doc.VbaProject.References;
for (int i = references.Count - 1; i >= 0; i--)
{
VbaReference reference = doc.VbaProject.References[i];
string path = GetLibIdPath(reference);
if (path == brokenPath)
references.RemoveAt(i);
}
doc.Save("NoBrokenRef.doc");
}
////// Returns string representing LibId path of a specified reference.
///private static string GetLibIdPath(VbaReference reference)
{
switch (reference.Type)
{
case VbaReferenceType.Registered:
case VbaReferenceType.Original:
case VbaReferenceType.Control:
return GetLibIdReferencePath(reference.LibId);
case VbaReferenceType.Project:
return GetLibIdProjectPath(reference.LibId);
default:
throw new ArgumentOutOfRangeException();
}
}
////// Returns path from a specified identifier of an Automation type library.
///////// Please see details for the syntax at [MS-OVBA], 2.1.1.8 LibidReference.
///private static string GetLibIdReferencePath(string libIdReference)
{
if (libIdReference != null)
{
string[] refParts = libIdReference.Split('#');
if (refParts.Length > 3)
return refParts[3];
}
return "";
}
////// Returns path from a specified identifier of an Automation type library.
///////// Please see details for the syntax at [MS-OVBA], 2.1.1.12 ProjectReference.
///private static string GetLibIdProjectPath(string libIdProject)
{
return (libIdProject != null) ? libIdProject.Substring(3) : "";
}
如果您有任何疑问或需求,请随时加入Aspose技术交流群(642018183),我们很高兴为您提供查询和咨询。
猜你喜欢
- 2024-10-26 Aspose.Total 最新试用版大放送,更有海量资源等你来拿
- 2024-10-26 JAVA操作office工具 java 操作excel的工具
- 2024-10-26 开年钜惠|ASPOSE、Spire、Text Control文档管理产品超低折扣热销领跑
- 2024-10-26 看Aspose帮助知名企业实现邮件附件在线转换,提升邮件处理效率
- 2024-10-26 PDF开发工具Aspose.PDF功能推荐——在.NET中将PDF转换为HTML
- 2024-10-26 文档在线预览新版 总结篇 world在线预览
- 2024-10-26 在 Python 中将 HTML 转换为 PNG、JPEG、BMP、GIF 或 TIFF 图像
- 2024-10-26 送您一份文档管理控件Aspose&Spire系列中文教程!请查收
- 2024-10-26 文档在线预览(四) 总结篇 office在线预览解决方案
- 2024-10-26 Aspose.Words教程(六):Xamarin和.NET Standard的差异和局限
你 发表评论:
欢迎- 最近发表
- 标签列表
-
- oraclesql优化 (66)
- 类的加载机制 (75)
- feignclient (62)
- 一致性hash算法 (71)
- dockfile (66)
- 锁机制 (57)
- javaresponse (60)
- 查看hive版本 (59)
- phpworkerman (57)
- spark算子 (58)
- vue双向绑定的原理 (68)
- springbootget请求 (58)
- docker网络三种模式 (67)
- spring控制反转 (71)
- data:image/jpeg (69)
- base64 (69)
- java分页 (64)
- kibanadocker (60)
- qabstracttablemodel (62)
- java生成pdf文件 (69)
- deletelater (62)
- com.aspose.words (58)
- android.mk (62)
- qopengl (73)
- epoch_millis (61)
本文暂时没有评论,来添加一个吧(●'◡'●)