Skip to content

Latest commit

 

History

History
52 lines (29 loc) · 1001 Bytes

PowerPoint.Application.OperatingSystem.md

File metadata and controls

52 lines (29 loc) · 1001 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.OperatingSystem property (PowerPoint)
vbapp10.chm502016
vbapp10.chm502016
PowerPoint.Application.OperatingSystem
5532197a-f6c3-825a-6492-e1c85d97a9d2
06/08/2017
medium

Application.OperatingSystem property (PowerPoint)

Returns the name of the operating system. Read-only.

Syntax

expression. OperatingSystem

expression A variable that represents an Application object.

Return value

String

Example

This example tests the OperatingSystem property to see whether Microsoft PowerPoint is running with a 32-bit version of Microsoft Windows.

os = Application.OperatingSystem

If InStr(os, "Windows (32-bit)") <> 0 Then

    MsgBox "Running a 32-bit version of Microsoft Windows"

End If

See also

Application Object

[!includeSupport and feedback]