Application Object

Microsoft Publisher Visual Basic

Application Object

Application Multiple objects

Represents the Microsoft Publisher application. The Application object includes properties and methods that return top-level objects. For example, the ActiveDocument property returns a Document object.

Using the Application object

Use the Application property to return the Application object. The following example displays the application name.

Sub ShowAppName()
    MsgBox Application.Name
End Sub
		

Remarks

When using Visual Basic for Applications in Microsoft Publisher, all of the properties and methods of the Application object can be used without the Application object qualifier. For example, instead of typing Application.ActiveDocument.PrintOut, you can type ActiveDocument.PrintOut. Properties and methods that can be used without the Application object qualifier are considered "global." To view the global properties and methods in the Object Browser, click <globals> at the top of the list in the Classes box. When accessing the Publisher object model from a non-Publisher project, all properties and methods must be fully qualified.