Application.Build Property

Publisher Developer Reference

Returns a Long that represents the Microsoft Office Publisher build number. Read-only.

Syntax

expression.Build

expression   A variable that represents a Application object.

Return Value
Long

Example

This example displays the Publisher build number.

Visual Basic for Applications
  Sub BuildNumber()
    MsgBox Prompt:="The current Microsoft Publisher build number is " & _
        Application.Build, Title:="Microsoft Publisher Build"
End Sub

See Also