API Reference

Cmdlet

Add-OfficePowerPointPlanCardGrid

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

Adds a semantic card-grid slide to a PowerPoint deck plan.

Remarks

Adds a semantic card-grid slide to a PowerPoint deck plan.

Examples

Authored help example

Add status cards to a deck plan.

PS>


$cards = @(
                @{ Title = 'Availability'; Items = @('99.98%', 'No major incidents'); AccentColor = '#16A34A' }
                @{ Title = 'Risk'; Items = @('One dependency on watch'); AccentColor = '#F59E0B' }
            )
            New-OfficePowerPointDeckPlan {
                Add-OfficePowerPointPlanCardGrid -Title 'Current signals' -Cards $cards
            }
        

Adds a card grid slide to the semantic deck 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-OfficePowerPointPlanCardGrid -Cards <Object[]> [-PassThru] [-Plan <PowerPointDeckPlan>] [-Seed <String>] [-Subtitle <String>] -Title <String> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Cards Object[] requiredposition: namedpipeline: False
Objects with Title/Name plus optional Items/Bullets/Details and AccentColor properties.
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 slide subtitle.
Title String requiredposition: 0pipeline: False
Slide title.

Outputs

OfficeIMO.PowerPoint.PowerPointDeckPlan