API Reference

Cmdlet

Add-OfficePowerPointPlanCapability

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

Adds a semantic capability/content slide to a PowerPoint deck plan.

Remarks

Adds a semantic capability/content slide to a PowerPoint deck plan.

Examples

Authored help example

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 Sets

Parameters

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

Outputs

OfficeIMO.PowerPoint.PowerPointDeckPlan