Mhd
Mhd

Reputation: 2978

PowerPoint Web Add-In: get data within document

Is it possible to get all data in PPT document?

Something like getSelectedDataAsync method but for all data whether selected or not.

I want to verify the content(Text) of the PPT document.

Upvotes: 0

Views: 544

Answers (1)

Juan Balmori
Juan Balmori

Reputation: 5036

The PPT JS API is not yet as rich as the Excel and Word ones, and today there is no API to do this directly. There is an intricate workaround where you need to get the entire file (pptx) (using the getFileAsync method) send it to service that uses the OOXML SDK to open it and grab the content you need.

Upvotes: 1

Related Questions