Application.Version Property (PowerPoint)
Returns the Microsoft PowerPoint version number. Read-only.
Syntax
expression .Version
expression A variable that represents a Application object.
Return Value
String
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