1

I'm trying to insert a image in powerpoint using javascript office api. I tryed to return a XElement with the image and insert it but it didn't work.

Nicu
  • 3,476
  • 4
  • 23
  • 43

1 Answers1

2

It is possible using

Office.context.document.setSelectedDataAsync(result, {
                            coercionType: Office.CoercionType.Image,
                            imageLeft: 50,
                            imageTop: 50,
                            imageWidth: 100,
                            imageHeight: 100
                        });

but Office.CoercionType.Image is available only for Office 365 ProPlus version 16.0.6741.2014

Nicu
  • 3,476
  • 4
  • 23
  • 43