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.
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.
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.