Application.Caption property (Word)

Returns or sets the text displayed in the Title bar of the application window. Read/write String.

Syntax

expression.Caption

expression A variable that represents an Application object.

Remarks

To change the caption of the application window to the default text, set this property to an empty string ("").

Example

This example resets the caption of the application window.

Application.Caption = ""

This example changes the caption of the Word application window to include the user name.

Application.Caption = UserName & "'s copy of Word"

See also

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