我使用Javascript API for Office使用Binding.getDataAsync获取文档的部分内容。结果是我有ooxml文本代表文档的一部分:
现在我想要改变这个XML,例如在内容周围放置一个表或显示注释,然后使用Binding.getDataAsync将其保存回来。 如何使用OpenOffice SDK将此xml解析为文档或文档部分并执行此处理?
我尝试使用以下所有内容:
var doc = new DocumentFormat.OpenXml.Wordprocessing.Document(ooxmlText);
//var part = new DocumentFormat.OpenXml.Wordprocessing.DocPart(ooxmlText);
//var parts = new DocumentFormat.OpenXml.Wordprocessing.DocParts(ooxmlText);
但我每次都说错了:
The XML has invalid content and cannot be constructed as an element.