Shaded Property Example

This example removes shading from form fields in Employment Form.doc.

Documents("Employment Form.doc").FormFields.Shaded = False

This example adds shading to the form fields in the active document and protects the document for forms.

With ActiveDocument
    .FormFields.Shaded = True
    .Protect Type:=wdAllowOnlyFormFields, NoReset:=True
End With