API Reference

Cmdlet

Add-OfficePowerPointPlanLogoWall

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

Adds a semantic logo/proof-wall slide to a PowerPoint deck plan.

Remarks

Adds a semantic logo/proof-wall slide to a PowerPoint deck plan.

Examples

Authored help example

Add a proof wall to a deck plan.

PS>


$logos = @(
                @{ Name = 'Directory'; Subtitle = 'Identity platform'; AccentColor = '#2563EB' }
                @{ Name = 'Mail'; Subtitle = 'Messaging platform'; AccentColor = '#0F766E' }
            )
            New-OfficePowerPointDeckPlan {
                Add-OfficePowerPointPlanLogoWall -Title 'Systems covered' -Subtitle 'Representative services' -Logos $logos
            }
        

Adds a semantic logo/proof-wall 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-OfficePowerPointPlanLogoWall -Logos <Object[]> [-PassThru] [-Plan <PowerPointDeckPlan>] [-Seed <String>] [-Subtitle <String>] -Title <String> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Logos Object[] requiredposition: namedpipeline: False
Objects with Name, optional Subtitle, ImagePath, 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