API Reference
Cmdlet
Add-OfficePowerPointPlanCoverage
Adds a semantic coverage/location slide to a PowerPoint deck plan.
Remarks
Adds a semantic coverage/location slide to a PowerPoint deck plan.
Examples
Add normalized coverage points to a deck plan.
PS>
$locations = @(
@{ Name = 'EMEA'; X = 0.45; Y = 0.35; Detail = 'Primary operations' }
@{ Name = 'AMER'; X = 0.22; Y = 0.42; Detail = 'Support window' }
)
New-OfficePowerPointDeckPlan {
Add-OfficePowerPointPlanCoverage -Title 'Regional coverage' -Subtitle 'Operational footprint' -Locations $locations
}
Adds a semantic location/coverage slide using normalized 0..1 coordinates.
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-OfficePowerPointPlanCoverage -Locations <Object[]> [-PassThru] [-Plan <PowerPointDeckPlan>] [-Seed <String>] [-Subtitle <String>] -Title <String> [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- Locations Object[]
- Objects with Name, X, Y, and optional Detail properties. X/Y are normalized 0..1 positions.
- 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