Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 981 Bytes

PowerPoint.Application.Version.md

File metadata and controls

49 lines (29 loc) · 981 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.Version property (PowerPoint)
vbapp10.chm502015
vbapp10.chm502015
PowerPoint.Application.Version
c76b1e7e-db29-0ef8-fefb-9333b8350de0
06/08/2017
medium

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

Application Object

[!includeSupport and feedback]