title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.Version property (PowerPoint) |
vbapp10.chm502015 |
|
|
c76b1e7e-db29-0ef8-fefb-9333b8350de0 |
06/08/2017 |
medium |
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
[!includeSupport and feedback]