AutoSize Property

Applies To

CheckBox object.

Description

True if the check box size is determined by the font size of the surrounding text. False if the check box size is determined by the Size property. Read/write Boolean.

See Also

Size property.

Example

This example sets the size of the check box named "Check1" to Auto and then selects the check box.

With ActiveDocument.FormFields("Check1").CheckBox
    .AutoSize = True
    .Value = True
End With