StatusText Property

Applies To

FormField object.

Description

Returns or sets the text that's displayed in the status bar when a form field has the focus. If the OwnStatus property is set to True, StatusText specifies the status bar text. If the OwnStatus property is set to False, StatusText specifies the name of an AutoText entry that contains status bar text for the form field. Read/write String.

See Also

OwnStatus property.

Example

This example sets the status bar help text for the form field named "Age."

With ActiveDocument.FormFields("Age")
    .OwnStatus = True
    .StatusText = "Type your current age."
End With