Document.ResetFormFields Method

Word Developer Reference

Clears all form fields in a document, preparing the form to be filled in again.

Syntax

expression.ResetFormFields

expression   Required. A variable that represents a Document object.

Remarks

Use the ResetFormFields method to clear fields when a document's fields are not locked. To clear fields when a document's fields are locked, use the Protect method.

Example

This example clears the fields in the active document. This example assumes that the active document contains form fields.

Visual Basic for Applications
  Sub ClearFormFields()
    ActiveDocument.ResetFormFields
End Sub

See Also