Share via


Application.Application Property

Word Developer Reference

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.

Visual Basic for Applications
  With Application
    .DisplayScrollBars = True
    .DisplayScreenTips = True
    .DisplayStatusBar = True
End With

See Also