Skip to content

Latest commit

 

History

History
61 lines (33 loc) · 1.24 KB

PowerPoint.Application.Creator.md

File metadata and controls

61 lines (33 loc) · 1.24 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.Creator property (PowerPoint)
vbapp10.chm502018
vbapp10.chm502018
PowerPoint.Application.Creator
3caec137-72b5-6ec9-3b79-acd55df62a3e
06/08/2017
medium

Application.Creator property (PowerPoint)

Returns a Long that represents the four-character creator code for the application in which the specified object was created. For example, if the object was created in Microsoft PowerPoint, this property returns the hexadecimal number 50575054. Read-only.

Syntax

expression.Creator

expression A variable that represents an Application object.

Return value

Long

Remarks

The Creator property is designed to be used in Microsoft Office applications for the Macintosh.

Example

This example displays a message about the creator of myObject.

Set myObject = Application.ActivePresentation.Slides(1).Shapes(1)

If myObject.Creator = &h50575054 Then

    MsgBox "This is a PowerPoint object"

Else

    MsgBox "This is not a PowerPoint object"

End If

See also

Application Object

[!includeSupport and feedback]