Application.Version property (PowerPoint)
Returns the Microsoft PowerPoint version number. Read-only.
Syntax
expression.Version
expression A variable that represents an 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
See also
Support and feedback
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.