Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns or sets the size of a check box, in points. Read/write Single.
Syntax
expression.Size
expression A variable that represents a 'CheckBox' object.
Example
This example sets the size of the check box named "Check1" in the active document to 14 points and then sets the check box as selected.
With ActiveDocument.FormFields("Check1").CheckBox
.AutoSize = False
.Size = 14
.Value = True
End With
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.