API Reference

Cmdlet

New-OfficePowerPointDeckPlan

Aliases: PptDeckPlan
Namespace PSWriteOffice
Aliases
PptDeckPlan
Inputs
None
Outputs
OfficeIMO.PowerPoint.PowerPointDeckPlan

Creates a semantic PowerPoint deck plan for designer rendering.

Remarks

Creates a semantic PowerPoint deck plan for designer rendering.

Examples

Authored help example

Create a semantic service brief plan.

PS>


$plan = New-OfficePowerPointDeckPlan {
                Add-OfficePowerPointPlanSection -Title 'Service Review' -Subtitle 'Monthly operating brief'
                Add-OfficePowerPointPlanProcess -Title 'Operating rhythm' -Steps @(
                  @{ Title = 'Collect'; Body = 'Gather health signals' }
                  @{ Title = 'Review'; Body = 'Confirm owner decisions' }
                  @{ Title = 'Publish'; Body = 'Share the final brief' }
                )
            }
            New-OfficePowerPoint -Path .\Examples\Documents\DesignerDeck.pptx {
                Add-OfficePowerPointDesignerDeck -Plan $plan
            }
        

Builds a deck plan and renders it through the OfficeIMO designer helpers.

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

New-OfficePowerPointDeckPlan [-Content <ScriptBlock>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Content ScriptBlock optionalposition: 0pipeline: False
Nested deck-plan DSL content.

Outputs

OfficeIMO.PowerPoint.PowerPointDeckPlan