API Reference

Cmdlet

Add-OfficePowerPointPlanCoverage

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

Adds a semantic coverage/location slide to a PowerPoint deck plan.

Remarks

Adds a semantic coverage/location slide to a PowerPoint deck plan.

Examples

Authored help example

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 Sets

Parameters

Locations Object[] requiredposition: namedpipeline: False
Objects with Name, X, Y, and optional Detail properties. X/Y are normalized 0..1 positions.
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