API Reference
Cmdlet
Add-OfficePowerPointPlanCapability
Adds a semantic capability/content slide to a PowerPoint deck plan.
Remarks
Adds a semantic capability/content slide to a PowerPoint deck plan.
Examples
Add capability sections to a deck plan.
PS>
$sections = @(
@{ Heading = 'Monitoring'; Body = 'Signals and ownership'; Items = @('Alerts', 'Dashboards') }
@{ Heading = 'Reporting'; Body = 'Executive-ready output'; Items = @('Summary', 'Appendix') }
)
New-OfficePowerPointDeckPlan {
Add-OfficePowerPointPlanCapability -Title 'Capabilities' -Subtitle 'What the team provides' -Sections $sections
}
Adds a semantic capability/content 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-OfficePowerPointPlanCapability [-PassThru] [-Plan <PowerPointDeckPlan>] -Sections <Object[]> [-Seed <String>] [-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.
- Sections Object[]
- Objects with Heading/Title, optional Body, Items/Bullets/Details, and AccentColor properties.
- Seed String
- Stable seed for deterministic visual selection.
- Subtitle String
- Optional slide subtitle.
- Title String
- Slide title.
Outputs
OfficeIMO.PowerPoint.PowerPointDeckPlan