API Reference
Cmdlet
Add-OfficeOpenDocumentSlide
Adds a slide to an OpenDocument presentation and optionally runs nested slide content.
Remarks
Adds a slide to an OpenDocument presentation and optionally runs nested slide content.
Examples
Add a slide with positioned text.
PS>
Add-OfficeOpenDocumentSlide -Name 'Summary' -Content {
Add-OfficeOpenDocumentTextBox -Text 'Quarterly summary' -X 2 -Y 2 -Width 20 -Height 3
}
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-OfficeOpenDocumentSlide [-Content <ScriptBlock>] [-Document <OdpPresentation>] [-Name <String>] [-PassThru] [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- Content ScriptBlock
- Nested slide commands that use this slide as their current target.
- Document OdpPresentation
- OpenDocument presentation. Omit inside New-OfficeOpenDocument -Content.
- Name String
- Optional unique slide name.
- PassThru SwitchParameter
- Emit the created slide.
Outputs
OfficeIMO.OpenDocument.OdpSlide