API Reference
Cmdlet
Set-OfficePowerPointPlaceholderText
Sets text in a slide placeholder.
Remarks
Sets text in a slide placeholder.
Examples
Example 1: Set the title placeholder text.
PS>
New-OfficePowerPoint -Path .\Examples\Documents\PowerPointPlaceholderText.pptx {
$slide = Add-OfficePowerPointSlide -Layout 1
Set-OfficePowerPointPlaceholderText -Slide $slide -PlaceholderType Title -Text 'Agenda'
Set-OfficePowerPointPlaceholderText -Slide $slide -PlaceholderType Body -Text 'Review signals and decisions' -IgnoreMissing
}
Updates placeholder text when the selected layout exposes matching placeholders.
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-OfficePowerPointPlaceholderText [-IgnoreMissing] [-Index <Nullable`1>] [-PassThru] -PlaceholderType <String> [-Slide <PowerPointSlide>] -Text <String> [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- IgnoreMissing SwitchParameter
- Ignore missing placeholders.
- Index Nullable`1
- Optional placeholder index.
- PassThru SwitchParameter
- Emit the placeholder textbox after update.
- PlaceholderType String
- Placeholder type to target.
- Slide PowerPointSlide
- Slide to update (optional inside DSL).
- Text String
- Text to set.
Outputs
OfficeIMO.PowerPoint.PowerPointTextBox