Version Property.Version Property

Publisher Developer Reference

Returns a String indicating the version number of the currently-installed copy of Microsoft Office Publisher. Read-only.

Syntax

expression.Version

expression   A variable that represents a Version Property object.

Return Value
String

Example

The following example displays the version and build number of the currently-installed copy of Publisher.

Visual Basic for Applications
  MsgBox "You are currently running Microsoft Publisher, " _
    & " version " & Application.Version & ", build " _
    & Application.Build & "."

See Also