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