Fields.ToggleShowCodes Method

Word Developer Reference

Switches the display of the fields between field codes and field results. Use the ShowCodes property to control the display of an individual field.

Syntax

expression.ToggleShowCodes

expression   Required. A variable that represents a Fields collection.

Example

This example switches on or switches off the display of fields in the selection (the equivalent of pressing SHIFT+F9).

Visual Basic for Applications
  Selection.Fields.ToggleShowCodes

This example switches on or switches off the display of fields in the active document (the equivalent of pressing ALT+F9).

Visual Basic for Applications
  ActiveDocument.Fields.ToggleShowCodes

See Also