Application.Caption Property

Word Developer Reference

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.

Visual Basic for Applications
  Application.Caption = ""

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

Visual Basic for Applications
  Application.Caption = UserName & "'s copy of Word"

See Also