Application.Build Property (Visio)

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

Version Information

Version Added: Visio 2002

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