Nate Radebaugh
Nate Radebaugh

Reputation: 1084

How can I add text to PowerPoint master using PowerPoint Add-in? (Office.js)

How can I add text to PowerPoint master using PowerPoint Add-in? (Office.js)

The documented mechanism for interacting with the deck appears to be too generic for this functionality: Office.context.document.*

https://learn.microsoft.com/en-us/office/dev/add-ins/quickstarts/powerpoint-quickstart?tabs=visual-studio

Thanks!

Upvotes: 0

Views: 137

Answers (1)

Andrew Hall
Andrew Hall

Reputation: 559

Microsoft has robust Add-In capabilities for some Office apps such as Excel and Word, but they have not released equivalent APIs for PowerPoint yet. So, editing PowerPoint text only using Office.js is not yet possible. We had similar needs. We had to supplement Office.js with OpenXML manipulation (mostly server-side) for our Excel-to-PowerPoint add-in.

Upvotes: 1

Related Questions