API Reference

Cmdlet

Add-OfficePowerPointPlanSection

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

Adds a semantic section/title slide to a PowerPoint deck plan.

Remarks

Adds a semantic section/title slide to a PowerPoint deck plan.

Examples

Authored help example

Add a title section to a deck plan.

PS>


$plan = New-OfficePowerPointDeckPlan {
                Add-OfficePowerPointPlanSection -Title 'Service Review' -Subtitle 'Monthly operating brief' -Seed 'service-review'
                Add-OfficePowerPointPlanCardGrid -Title 'Signals' -Cards @(
                  @{ Title = 'Health'; Items = @('Green', 'No blockers') }
                )
            }
        

Adds a semantic opening section 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-OfficePowerPointPlanSection [-PassThru] [-Plan <PowerPointDeckPlan>] [-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.
Seed String optionalposition: namedpipeline: False
Stable seed for deterministic visual selection.
Subtitle String optionalposition: namedpipeline: False
Optional subtitle.
Title String requiredposition: 0pipeline: False
Slide title.

Outputs

OfficeIMO.PowerPoint.PowerPointDeckPlan