API Reference
Cmdlet
New-OfficePowerPointDeckPlan
Creates a semantic PowerPoint deck plan for designer rendering.
Remarks
Creates a semantic PowerPoint deck plan for designer rendering.
Examples
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 SetsParameters
- Content ScriptBlock
- Nested deck-plan DSL content.
Outputs
OfficeIMO.PowerPoint.PowerPointDeckPlan