API Reference

Cmdlet

New-OfficePdfTableCellCheckBox

Aliases: PdfTableCellCheckBox
Namespace PSWriteOffice
Aliases
PdfTableCellCheckBox
Outputs
OfficeIMO.Pdf.PdfTableCellCheckBox

Creates a typed check box for a PDF table cell.

Remarks

Creates a typed check box for a PDF table cell.

Examples

Authored help example

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 Sets

Parameters

Checked SwitchParameter optionalposition: namedpipeline: False
Create the check box in its checked state.
CheckedValueName String optionalposition: namedpipeline: False
PDF appearance-state name written when checked.
Name String requiredposition: 0pipeline: False
Unique AcroForm field name.
Size Double optionalposition: namedpipeline: False
Visual square size in PDF points.

Outputs

OfficeIMO.Pdf.PdfTableCellCheckBox