View.ShowFieldCodes property (Word)

True if field codes are displayed. Read/write Boolean.

Syntax

expression. ShowFieldCodes

expression An expression that returns a 'View' object.

Example

This example hides field codes in the window for Document1.

Windows("Document1").View.ShowFieldCodes = False

This example shows field codes in the first window.

Windows(1).View.ShowFieldCodes = True

This example toggles field codes in the active window.

ActiveDocument.ActiveWindow.View.ShowFieldCodes = _ 
 Not ActiveDocument.ActiveWindow.View.ShowFieldCodes

See also

View Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.