Using customXmlParts with an Excel add-in using the Office.js API

I am starting to work with the new Office.js add-in API using Excel, and I try to keep the add-in state constant. The old VSTO add-in API had CustomXMLParts, and I see that there is Office.context.document.customXmlParts, but according to the docs ( https://dev.office.com/reference/add-ins/shared/customxmlparts.customxmlparts ) it only works with Word. Does anyone know how to do this with Excel?

+4
source share
1 answer

CustomXML details for Excel are coming very soon, as part of a set of requirements ExcelApi 1.5. See https://github.com/OfficeDev/office-js-docs/tree/ExcelJs_OpenSpec for details .

Hiding any unforeseen circumstances, “very soon” means that it should be approximately one month away from availability in Insider Fast collections and 1.5 months after that, until it goes into general production.

+3
source

Source: https://habr.com/ru/post/1672862/


All Articles