Enabled Property

Applies To

FormField object.

Description

True if a form field is enabled. If a form field is enabled, its contents can be changed as the form is filled in. Read/write Boolean.

See Also

Result property, Value property.

Example

If the first form field in the active document is an enabled check box, this example selects the check box.

Set myFField = ActiveDocument.FormFields(1)
If myFField.Enabled = True And myFField.Type = wdFieldFormCheckBox Then
    myFField.CheckBox.Value = True
End If