Evotec

Project

PSWriteOffice

PSWriteOffice is an open-source PowerShell and .NET project with packages, release history, and technical documentation.

Stars 144
Forks 12
Open issues 16
PowerShell Gallery downloads 150,904
Release v0.2.0
Language: C# Updated: 2026-04-06

API Reference

Cmdlet

Set-OfficePowerPointSlideTransition

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

Sets the transition used when advancing to a slide.

Remarks

Works on an explicit slide object or on the current slide inside the PowerPoint DSL.

Examples

Authored help example

Apply a fade transition to a slide.

PS>


Get-OfficePowerPointSlide -Presentation $ppt -Index 0 | Set-OfficePowerPointSlideTransition -Transition Fade
        

Updates the first slide so it uses the Fade transition.

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

Set-OfficePowerPointSlideTransition [-Slide <PowerPointSlide>] -Transition <Fade> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Slide PowerPointSlide optionalposition: namedpipeline: True (ByValue)
Slide to update (optional inside a slide DSL scope).
Transition SlideTransition requiredposition: namedpipeline: Falsevalues: 18
Transition to apply.
Possible values: Fade, Wipe, BlindsVertical, BlindsHorizontal, CombHorizontal, CombVertical, PushUp, PushDown, PushLeft, PushRight, Cut, Flash, WarpIn, WarpOut, Prism, FerrisLeft, FerrisRight, Morph

Outputs

OfficeIMO.PowerPoint.PowerPointSlide