API Reference
Cmdlet
Add-OfficePowerPointPlanCardGrid
Adds a semantic card-grid slide to a PowerPoint deck plan.
Remarks
Adds a semantic card-grid slide to a PowerPoint deck plan.
Examples
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 SetsParameters
- Cards Object[]
- Objects with Title/Name plus optional Items/Bullets/Details and AccentColor properties.
- PassThru SwitchParameter
- Emit the updated plan.
- Plan PowerPointDeckPlan
- Plan to update. Optional inside New-OfficePowerPointDeckPlan.
- Seed String
- Stable seed for deterministic visual selection.
- Subtitle String
- Optional slide subtitle.
- Title String
- Slide title.
Outputs
OfficeIMO.PowerPoint.PowerPointDeckPlan