FormField.HelpText property (Word)

Returns or sets the text that's displayed in a message box when the form field has the focus and the user presses F1. Read/write String.

Syntax

expression. HelpText

expression A variable that represents a 'FormField' object.

Remarks

If the OwnHelp property is set to True, HelpText specifies the text string value. If OwnHelp is set to False, HelpText specifies the name of an AutoText entry that contains help text for the form field.

Example

This example sets the help text for the form field named "Name."

With ActiveDocument.FormFields("Name") 
 .OwnHelp = True 
 .HelpText = "Type your full legal name." 
End With

See also

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