Application.Version property (PowerPoint)
Returns the Microsoft PowerPoint version number. Read-only.
expression.Version
expression A variable that represents an Application object.
String
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
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.