79510981

Date: 2025-03-15 10:41:54
Score: 1
Natty:
Report link

Good news, API 1.7 for PowerPoint supports managing Custom XML Parts: https://learn.microsoft.com/en-us/javascript/api/powerpoint/powerpoint.customxmlpartcollection?view=powerpoint-js-1.7

await PowerPoint.run(async (context) => {
    const partsCollection = context.presentation.customXmlParts;
    partsCollection.load("items/id");
    await context.sync();
    //...
});
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Felipe Costa Gualberto