API Reference

Cmdlet

Set-OfficePowerPointNotes

Aliases: PptNotes
Namespace PSWriteOffice
Aliases
PptNotes
Inputs
OfficeIMO.PowerPoint.PowerPointSlide
Outputs
OfficeIMO.PowerPoint.PowerPointSlide

Sets speaker notes for a PowerPoint slide.

Remarks

Sets speaker notes for a PowerPoint slide.

Examples

Authored help example

Example 1: Attach speaker notes.

PS>


New-OfficePowerPoint -Path .\Examples\Documents\PowerPointNotes.pptx {
                $slide = Add-OfficePowerPointSlide -Layout 1
                Set-OfficePowerPointSlideTitle -Slide $slide -Title 'Executive summary'
                Set-OfficePowerPointNotes -Slide $slide -Text 'Keep this slide under five minutes and focus on decisions.'
            }
        

Writes speaker notes to a generated slide.

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

Set-OfficePowerPointNotes [-Slide <PowerPointSlide>] -Text <String> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Slide PowerPointSlide optionalposition: namedpipeline: True (ByValue)
Slide whose notes should be updated (optional inside DSL).
Text String requiredposition: 0pipeline: False
Notes text to apply.

Outputs

OfficeIMO.PowerPoint.PowerPointSlide