API Reference

Cmdlet

Add-OfficeOpenDocumentSlide

Namespace PSWriteOffice
Inputs
OfficeIMO.OpenDocument.OdpPresentation
Outputs
OfficeIMO.OpenDocument.OdpSlide

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

Authored help example

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 Sets

Parameters

Content ScriptBlock optionalposition: 1pipeline: False
Nested slide commands that use this slide as their current target.
Document OdpPresentation optionalposition: namedpipeline: True (ByValue)
OpenDocument presentation. Omit inside New-OfficeOpenDocument -Content.
Name String optionalposition: 0pipeline: False
Optional unique slide name.
PassThru SwitchParameter optionalposition: namedpipeline: False
Emit the created slide.

Outputs

OfficeIMO.OpenDocument.OdpSlide