Version Property
Applies To
Application object.
Description
Returns the PowerPoint version number. Read-only String.
See Also
Build property.
Example
This example displays a message box that contains the PowerPoint version number and build number, and the name of the operating system.
With Application
MsgBox "Welcome to PowerPoint version " & .Version & _
", build " & .Build & ", running on " & .OperatingSystem & "!"
End With