Version Property

Microsoft PowerPoint Visual Basic

Version Property

       

Returns the PowerPoint version number. Read-only 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