API Reference
Cmdlet
Add-OfficePdfList
Adds a bullet or numbered list to a PDF document.
Remarks
Adds a bullet or numbered list to a PDF document.
Examples
Add action items to a report.
PS>
New-OfficePdf -Path .\Examples\Documents\PdfList.pdf {
Add-OfficePdfHeading -Text 'Next actions'
Add-OfficePdfList -Items 'Confirm owner','Publish summary','Schedule review' -Numbered
}
Adds a numbered list in the generated PDF flow.
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-OfficePdfList [-Align <Left|Center|Right|Justify>] -Items <String[]> [-Numbered] [-PassThru] [-StartNumber <Int32>] [<CommonParameters>]#Parameter set:
ContextParameters
- Align PdfAlign
- List alignment.
- Possible values:
Left,Center,Right,Justify - Items String[]
- List item text.
- Numbered SwitchParameter
- Create a numbered list instead of a bullet list.
- PassThru SwitchParameter
- Emit the updated document.
- StartNumber Int32
- Number to use for the first numbered item.
Outputs
OfficeIMO.Pdf.PdfDocument
Add-OfficePdfList [-Align <Left|Center|Right|Justify>] -Document <PdfDocument> -Items <String[]> [-Numbered] [-PassThru] [-StartNumber <Int32>] [<CommonParameters>]#Parameter set:
DocumentParameters
- Align PdfAlign
- List alignment.
- Possible values:
Left,Center,Right,Justify - Document PdfDocument
- PDF document to update outside the DSL context.
- Items String[]
- List item text.
- Numbered SwitchParameter
- Create a numbered list instead of a bullet list.
- PassThru SwitchParameter
- Emit the updated document.
- StartNumber Int32
- Number to use for the first numbered item.
Outputs
OfficeIMO.Pdf.PdfDocument