在新的版本中支持获取OOXML兼容性版本,可以从加载文档时进行定义
Document doc = new Document("in.docx");
OoxmlCompliance compliance = doc.Compliance;
在新的版本中,文档比较已经改为单词级的比较,使比较生成的结果更加可读和更接近MS Word
在HTML导入和导出时支持下划线设置颜色
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.InsertHtml("<div><span style='color: red; text-decoration: underline;'>
Aspose.Words</span></div>");
doc.Save(MyDir + @"Out.docx");
在新的版本中支持从AddressBlock字段获取字段名字
FieldAddressBlock faddressbook = (FieldAddressBlock)doc.Range.Fields[0];
String[] names = faddressbook.GetFieldNames();