Build property
Returns the Microsoft MapPoint or MapPoint Control build number; the number in parentheses in the About dialog box. Read-only String.
Applies to
Objects: Application, MappointControl
Syntax
object.Build
Parameters
Part |
Description |
---|---|
object |
Required. An expression that returns an Application or MappointControl object. |
Remarks
- To return the version number, use the Version property of an Application or MappointControl object.
Example
Sub FindBuildNumber()
Dim objApp As New MapPoint.Application
'Set up the application
objApp.Visible = True
objApp.UserControl = True
'Return the build number
MsgBox "MapPoint build number: " + objApp.Build
End Sub