我正在使用Javascript API for Office使用 Binding.getDataAsync 获取文档部分的ooxml。结果是我有代表文档一部分的 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.