Application.Build property (Visio)

Returns the build number of the running instance. Read-only.

Syntax

expression.Build

expression A variable that represents an Application object.

Return value

Long

Remarks

The format of the build number is described in the following table.

Bits Description
0 – 15 Internal build number

The build number of the running instance is written to the BuildNumberCreated property when a new document is created, and to the BuildNumberEdited property when a document is edited.

Example

This Microsoft Visual Basic for Applications (VBA) macro shows how to use the Build property to get the build number of the running instance of Visio.

 
Public Sub Build_Example() 
 
 Debug.Print Application.Build 
 
End Sub

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.