API Reference

Cmdlet

Add-OfficePowerPointPlanCaseStudy

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

Adds a semantic case-study slide to a PowerPoint deck plan.

Remarks

Adds a semantic case-study slide to a PowerPoint deck plan.

Examples

Authored help example

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 Sets

Parameters

Metrics Object[] optionalposition: namedpipeline: False
Objects with Value and Label/Name/Title properties.
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 and Body/Description/Text properties.
Seed String optionalposition: namedpipeline: False
Stable seed for deterministic visual selection.
Title String requiredposition: 0pipeline: False
Slide title.

Outputs

OfficeIMO.PowerPoint.PowerPointDeckPlan