Application.Application Property (Word)
Returns an Application object that represents the Microsoft Word application.
Syntax
expression .Application
expression A variable that represents an Application object.
Example
This example displays scroll bars, screen tips, and the status bar for Microsoft Word.
With Application
.DisplayScrollBars = True
.DisplayScreenTips = True
.DisplayStatusBar = True
End With