API Reference
Command
Set-OfficePowerPointLayoutPlaceholderTextMargins
Sets layout placeholder text margins for a slide layout (points).
Remarks
Sets layout placeholder text margins for a slide layout (points).
Examples
Update layout placeholder text margins.
PS>Set-OfficePowerPointLayoutPlaceholderTextMargins -Presentation $ppt -Master 0 -Layout 1 -PlaceholderType Title -Left 12 -Top 8 -Right 12 -Bottom 8
Updates the text margins on the layout placeholder.
Update margins inside the DSL.
PS>New-OfficePowerPoint -Path .\deck.pptx {
$layout = Get-OfficePowerPointLayout | Select-Object -First 1
Set-OfficePowerPointLayoutPlaceholderTextMargins -Master $layout.MasterIndex -Layout $layout.LayoutIndex -PlaceholderType Title -Left 12 -Top 8 -Right 12 -Bottom 8
}
Uses the DSL context to resolve the presentation.
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-OfficePowerPointLayoutPlaceholderTextMargins -Bottom <Double> [-CreateIfMissing] [-Index <Nullable`1>] -Layout <Int32> -Left <Double> [-Master <Int32>] [-PassThru] -PlaceholderType <String> [-Presentation <PowerPointPresentation>] -Right <Double> -Top <Double> [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- Bottom Double
- Bottom margin in points.
- CreateIfMissing SwitchParameter
- Create the placeholder if it is missing.
- Index Nullable`1
- Optional placeholder index.
- Layout Int32
- Layout index within the master.
- Left Double
- Left margin in points.
- Master Int32
- Slide master index.
- PassThru SwitchParameter
- Emit the placeholder textbox after update.
- PlaceholderType String
- Placeholder type to target.
- Presentation PowerPointPresentation
- Presentation to update (optional inside DSL).
- Right Double
- Right margin in points.
- Top Double
- Top margin in points.
Outputs
OfficeIMO.PowerPoint.PowerPointTextBox