API Reference
Cmdlet
Add-OfficePdfHeading
Adds a heading to a PDF document.
Remarks
Adds a heading to a PDF document.
Examples
Create heading levels in a PDF report.
PS>
New-OfficePdf -Path .\Examples\Documents\PdfHeadings.pdf {
Add-OfficePdfHeading -Text 'Service Review' -Level 1 -Color '#1D4ED8'
Add-OfficePdfHeading -Text 'Open risks' -Level 2
Add-OfficePdfParagraph -Text 'Heading levels create the report structure.'
}
Adds report headings before body content.
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-OfficePdfHeading [-Align <Left|Center|Right|Justify>] [-Color <String>] [-Level <Int32>] [-PassThru] -Text <String> [<CommonParameters>]#Parameter set:
ContextParameters
- Align PdfAlign
- Heading alignment.
- Possible values:
Left,Center,Right,Justify - Color String
- Optional heading color in #RRGGBB format.
- Level Int32
- Heading level, 1 through 3.
- PassThru SwitchParameter
- Emit the updated document.
- Text String
- Heading text.
Outputs
OfficeIMO.Pdf.PdfDocument
Add-OfficePdfHeading [-Align <Left|Center|Right|Justify>] [-Color <String>] -Document <PdfDocument> [-Level <Int32>] [-PassThru] -Text <String> [<CommonParameters>]#Parameter set:
DocumentParameters
- Align PdfAlign
- Heading alignment.
- Possible values:
Left,Center,Right,Justify - Color String
- Optional heading color in #RRGGBB format.
- Document PdfDocument
- PDF document to update outside the DSL context.
- Level Int32
- Heading level, 1 through 3.
- PassThru SwitchParameter
- Emit the updated document.
- Text String
- Heading text.
Outputs
OfficeIMO.Pdf.PdfDocument