API Reference

Cmdlet

Add-OfficePowerPointPlanProcess

Aliases: PptPlanProcess
Namespace PSWriteOffice
Aliases
PptPlanProcess
Inputs
OfficeIMO.PowerPoint.PowerPointDeckPlan
Outputs
OfficeIMO.PowerPoint.PowerPointDeckPlan

Adds a semantic process/timeline slide to a PowerPoint deck plan.

Remarks

Adds a semantic process/timeline slide to a PowerPoint deck plan.

Examples

Authored help example

Add a process slide to a deck plan.

PS>


$steps = @(
                @{ Title = 'Collect'; Body = 'Gather health and delivery signals' }
                @{ Title = 'Review'; Body = 'Confirm decisions with owners' }
                @{ Title = 'Publish'; Body = 'Send the service brief' }
            )
            New-OfficePowerPointDeckPlan {
                Add-OfficePowerPointPlanProcess -Title 'Operating rhythm' -Subtitle 'How the review is produced' -Steps $steps
            }
        

Adds a semantic timeline/process slide to the plan.

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-OfficePowerPointPlanProcess [-PassThru] [-Plan <PowerPointDeckPlan>] [-Seed <String>] -Steps <Object[]> [-Subtitle <String>] -Title <String> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

PassThru SwitchParameter optionalposition: namedpipeline: False
Emit the updated plan.
Plan PowerPointDeckPlan optionalposition: namedpipeline: True (ByValue)
Plan to update. Optional inside New-OfficePowerPointDeckPlan.
Seed String optionalposition: namedpipeline: False
Stable seed for deterministic visual selection.
Steps Object[] requiredposition: namedpipeline: False
Objects with Title and Body/Description/Text properties.
Subtitle String optionalposition: namedpipeline: False
Optional slide subtitle.
Title String requiredposition: 0pipeline: False
Slide title.

Outputs

OfficeIMO.PowerPoint.PowerPointDeckPlan