API Reference
Cmdlet
Add-OfficePowerPointPlanCaseStudy
Adds a semantic case-study slide to a PowerPoint deck plan.
Remarks
Adds a semantic case-study slide to a PowerPoint deck plan.
Examples
Add a case-study slide with metrics.
PS>
$sections = @(
@{ Heading = 'Challenge'; Body = 'Manual reports took too long to produce.' }
@{ Heading = 'Outcome'; Body = 'Automated generation made the review repeatable.' }
)
$metrics = @(
@{ Value = '4h'; Label = 'saved each cycle' }
@{ Value = '0'; Label = 'manual copy steps' }
)
New-OfficePowerPointDeckPlan {
Add-OfficePowerPointPlanCaseStudy -Title 'Automation impact' -Sections $sections -Metrics $metrics
}
Adds a proof-oriented case-study 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-OfficePowerPointPlanCaseStudy [-Metrics <Object[]>] [-PassThru] [-Plan <PowerPointDeckPlan>] -Sections <Object[]> [-Seed <String>] -Title <String> [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- Metrics Object[]
- Objects with Value and Label/Name/Title properties.
- PassThru SwitchParameter
- Emit the updated plan.
- Plan PowerPointDeckPlan
- Plan to update. Optional inside New-OfficePowerPointDeckPlan.
- Sections Object[]
- Objects with Heading/Title and Body/Description/Text properties.
- Seed String
- Stable seed for deterministic visual selection.
- Title String
- Slide title.
Outputs
OfficeIMO.PowerPoint.PowerPointDeckPlan