Document.FormsDesign property (Word)

True if the specified document is in form design mode. Read-only Boolean.

Syntax

expression. FormsDesign

expression A variable that represents a Document object.

Remarks

The FormsDesign property always returns False if it's used in code that is run from Microsoft Word, but it returns the correct value if it is run through Automation. For example, if you run the example from Microsoft Excel, it will return True if you are in design mode.

When Word is in form design mode, the Control Toolbox toolbar is displayed. Use this toolbar to insert ActiveX controls such as command buttons, scroll bars, and option buttons. In form design mode, event procedures don't run, and when you click an embedded control, the control's sizing handles appear.

Example

This example displays a message box that indicates whether the active document is in form design mode. This example will always return False.

Msgbox ActiveDocument.FormsDesign

See also

Document 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.