API Reference
Cmdlet
Add-OfficePdfPageBreak
Adds a page break to a PDF document.
Remarks
Adds a page break to a PDF document.
Examples
Start an appendix on a new page.
PS>
New-OfficePdf -Path .\Examples\Documents\PdfPageBreak.pdf {
Add-OfficePdfHeading -Text 'Service review'
Add-OfficePdfParagraph -Text 'Summary content stays on the first page.'
Add-OfficePdfPageBreak
Add-OfficePdfHeading -Text 'Appendix' -Level 2
}
Forces the appendix section to begin on the next page.
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-OfficePdfPageBreak [-PassThru] [<CommonParameters>]#Parameter set:
ContextParameters
- PassThru SwitchParameter
- Emit the updated document.
Outputs
OfficeIMO.Pdf.PdfDocument
Add-OfficePdfPageBreak -Document <PdfDocument> [-PassThru] [<CommonParameters>]#Parameter set:
DocumentParameters
- Document PdfDocument
- PDF document to update outside the DSL context.
- PassThru SwitchParameter
- Emit the updated document.
Outputs
OfficeIMO.Pdf.PdfDocument