How to work with custom xml in PowerPoint and office.js?

Viewed 315

In Word you can use the Office.context.document.customXmlParts API to get access to custom xml. In Excel you have to use Excel.run((context) => {}) and can then use context.workbook.customXmlParts for the same purpose.

How can you do this in PowerPoint using office.js?

1 Answers

This is currently not yet implemented for PowerPoint. However we are actively working on improving PowerPoint OfficeJS API surface, it is possible that there might be some news on this specific API in the upcoming months.

Related