API Reference
Cmdlet
Add-OfficePowerPointPlanProcess
Adds a semantic process/timeline slide to a PowerPoint deck plan.
Remarks
Adds a semantic process/timeline slide to a PowerPoint deck plan.
Examples
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 SetsParameters
- PassThru SwitchParameter
- Emit the updated plan.
- Plan PowerPointDeckPlan
- Plan to update. Optional inside New-OfficePowerPointDeckPlan.
- Seed String
- Stable seed for deterministic visual selection.
- Steps Object[]
- Objects with Title and Body/Description/Text properties.
- Subtitle String
- Optional slide subtitle.
- Title String
- Slide title.
Outputs
OfficeIMO.PowerPoint.PowerPointDeckPlan