OfficeIMO

API Reference

Command

Add-OfficePowerPointImage

Namespace PSWriteOffice
Inputs
OfficeIMO.PowerPoint.PowerPointSlide
Outputs
OfficeIMO.PowerPoint.PowerPointPicture

Adds an image to a PowerPoint slide.

Remarks

Adds an image to a PowerPoint slide.

Examples

Insert an image.


PS>Add-OfficePowerPointImage -Slide $slide -Path .\logo.png -X 40 -Y 60 -Width 200 -Height 120
        

Adds a picture to the slide.

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

Add-OfficePowerPointImage [-Height <Double>] -Path <String> [-Slide <PowerPointSlide>] [-Width <Double>] [-X <Double>] [-Y <Double>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Height Double optionalposition: namedpipeline: False
Image height in points.
Path String requiredposition: 0pipeline: False
Path to the image file.
Slide PowerPointSlide optionalposition: namedpipeline: True (ByValue)
Target slide that will receive the picture (optional inside DSL).
Width Double optionalposition: namedpipeline: False
Image width in points.
X Double optionalposition: namedpipeline: False
Left offset (in points) from the slide origin.
Y Double optionalposition: namedpipeline: False
Top offset (in points) from the slide origin.

Outputs

OfficeIMO.PowerPoint.PowerPointPicture