Skip to content

Latest commit

 

History

History
55 lines (32 loc) · 1.23 KB

Visio.Application.Build.md

File metadata and controls

55 lines (32 loc) · 1.23 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.Build property (Visio)
vis_sdr.chm10050515
vis_sdr.chm10050515
Visio.Application.Build
92fcdbe9-dfb1-cd20-4700-796bf7ca17f1
06/25/2019
medium

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

[!includeSupport and feedback]