API Reference
Command
Get-OfficePowerPointSlide
Enumerates slides or retrieves a specific slide.
Remarks
Enumerates slides or retrieves a specific slide.
Examples
List slide titles.
PS>Get-OfficePowerPointSlide -Presentation $ppt | ForEach-Object { $_.GetPlaceholder([DocumentFormat.OpenXml.Presentation.PlaceholderValues]::Title).Text }
Streams each slide so you can read the title placeholder text.
Enumerate slides inside the DSL.
PS>New-OfficePowerPoint -Path .\deck.pptx { Get-OfficePowerPointSlide | Select-Object -First 1 }
Uses the current DSL presentation context.
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
Get-OfficePowerPointSlide [-Index <Nullable`1>] [-Presentation <PowerPointPresentation>] [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- Index Nullable`1
- Optional zero-based index; omit to enumerate all slides.
- Presentation PowerPointPresentation
- Presentation to inspect (optional inside DSL).
Outputs
System.Object