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 default check box value. True if the default value is checked. Read/write Boolean.
Syntax
expression. Default
expression Required. A variable that represents a 'CheckBox' object.
Example
If the first form field in the active document is a check box, this example retrieves the default value.
Dim blnDefault As Boolean
If ActiveDocument.FormFields(1).Type = wdFieldFormCheckBox Then
blnDefault = ActiveDocument.FormFields(1).CheckBox.DefaultEnd If
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.