API Documentation > CorelDRAW > 2025-v26 > Application > IVGApplication
Application.Version property
Gets a verbose description of the current application version
Syntax:
Property Get Version() As String
Remarks:
The Version property returns version information about CorelDRAW. The Version property contains the version major number (before the decimal) and version build number (after the decimal). For example if the current version is 14.123, the Version value would be Version 14.123.
Examples:
The following VBA example displays the current version of CorelDRAW in a message box.
Sub AppVersion()
MsgBox "You are using: " & Version 
End Sub