Returns the Microsoft Word version number. Read-only
String.
Syntax
expression.Version
expression A variable that represents an Application object.
Example
This example displays the Word version number in a message box.
| Visual Basic for Applications |
|---|
Msgbox "The version of Word is " & Application.Version
|