API Reference
Cmdlet
New-OfficePdfTableCellCheckBox
Creates a typed check box for a PDF table cell.
Remarks
Creates a typed check box for a PDF table cell.
Examples
Example 1: Create a checked table-cell field.
PS>
$approved = New-OfficePdfTableCellCheckBox -Name Approved -Checked
$cell = New-OfficePdfTableCell -Text 'Approved' -CheckBox $approved
The check box remains an AcroForm field positioned by the OfficeIMO table renderer.
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
New-OfficePdfTableCellCheckBox [-Checked] [-CheckedValueName <String>] -Name <String> [-Size <Double>] [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- Checked SwitchParameter
- Create the check box in its checked state.
- CheckedValueName String
- PDF appearance-state name written when checked.
- Name String
- Unique AcroForm field name.
- Size Double
- Visual square size in PDF points.
Outputs
OfficeIMO.Pdf.PdfTableCellCheckBox