API Reference
Cmdlet
Clear-OfficePdfBackgroundShape
Clears generated PDF page background shapes.
Remarks
Clears generated PDF page background shapes.
Examples
Remove background shapes before saving a variant.
PS>
$pdf = New-OfficePdf {
Add-OfficePdfBackgroundShape -Shape Rectangle -FillColor '#EEF2FF' -X 0 -Y 0 -Width 595 -Height 120
Add-OfficePdfHeading -Text 'Clean variant'
} -NoSave
$pdf | Clear-OfficePdfBackgroundShape -PassThru | Save-OfficePdf -Path .\Examples\Documents\PdfNoBackgroundShape.pdf
Clears generated page background shapes on an in-memory PDF.
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
Clear-OfficePdfBackgroundShape [-PassThru] [<CommonParameters>]#Parameter set:
ContextParameters
- PassThru SwitchParameter
- Emit the updated document.
Outputs
OfficeIMO.Pdf.PdfDocument
Clear-OfficePdfBackgroundShape -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