Application.Version Property

PowerPoint Developer Reference

Returns the Microsoft Office 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.

Visual Basic for Applications
  With Application
MsgBox "Welcome to PowerPoint version " & .Version & _
    ", build " & .Build & ", running on " & .OperatingSystem & "!"
End With

See Also