Picture

Details about adding and manipulating picture to a slide

Basic Code Sample

powerPoint.AddSlide(PresentationConstants.SlideLayoutType.BLANK)
    .AddPicture("./TestFiles/tom_and_jerry.jpg", new G.PictureSetting());

PictureSetting Options

PropertyTypeDetails

hyperlinkProperties

Hyperlink propertie setting

imageType

ImageType

Inserted Image Type

height

uint

Image Height

width

uint

Image Width

x

uint

Image Top Left X

y

uint

Image Top Left Y

HyperlinkProperties Options

PropertyTypeDetails

hyperlinkPropertyType

HyperlinkPropertyType

Type of hyperlink options

value

string

Hyperlink address value

toolTip

string

Hyperlink tooltip

Last updated