API Reference
Cmdlet
Add-OfficePdfParagraph
Adds a paragraph to a PDF document.
Remarks
Adds a paragraph to a PDF document.
Examples
Add body text to a generated PDF.
PS>
New-OfficePdf -Path .\Examples\Documents\PdfParagraph.pdf {
Add-OfficePdfHeading -Text 'Status'
Add-OfficePdfParagraph -Text 'All monitored services are currently healthy.' -Color '#166534'
}
Adds a colored body paragraph after a heading.
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-OfficePdfParagraph [-Align <Left|Center|Right|Justify>] [-Color <String>] [-PassThru] -Text <String> [<CommonParameters>]#Parameter set:
ContextParameters
- Align PdfAlign
- Paragraph alignment.
- Possible values:
Left,Center,Right,Justify - Color String
- Optional text color in #RRGGBB format.
- PassThru SwitchParameter
- Emit the updated document.
- Text String
- Paragraph text.
Outputs
OfficeIMO.Pdf.PdfDocument
Add-OfficePdfParagraph [-Align <Left|Center|Right|Justify>] [-Color <String>] -Document <PdfDocument> [-PassThru] -Text <String> [<CommonParameters>]#Parameter set:
DocumentParameters
- Align PdfAlign
- Paragraph alignment.
- Possible values:
Left,Center,Right,Justify - Color String
- Optional text color in #RRGGBB format.
- Document PdfDocument
- PDF document to update outside the DSL context.
- PassThru SwitchParameter
- Emit the updated document.
- Text String
- Paragraph text.
Outputs
OfficeIMO.Pdf.PdfDocument