FormField.OwnStatus property (Word)

Specifies the source of the text that's displayed in the status bar when a form field has the focus. Read/write Boolean.

Syntax

expression. OwnStatus

expression An expression that returns a 'FormField' object.

Remarks

If True, the text specified by the StatusText property is displayed. If False, the text of the AutoText entry specified by the StatusText property is displayed.

Example

This example sets the status bar text for the form field named "Account" to the contents of the AutoText entry named "Acct."

With ActiveDocument.FormFields("Account") 
 .OwnStatus = False 
 .StatusText = "Acct" 
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.