API Documentation > CorelDRAW > 2025-v26 > Application > IVGApplication
Application.VersionMinor property
Gets the minor version number of the application
Syntax:
Property Get VersionMinor() As Long
Remarks:
The VersionMinor property returns version information about CorelDRAW. The VersionMinor property is set to 0 (zero) for a mainstream application.
Examples:
The following VBA example checks the current version of CorelDRAW to ensure that the version number is at least 14.123.
Sub MajorVersion()
If VersionMajor = 14 And VersionBuild < 123 Then
  MsgBox "This script required that CorelDRAW version 14.123 or later be installed."
End If 
End Sub