Share via


TextFrame2.Creator Property

Returns a Long that represents the four-character creator code for the application in which the specified object was created. Read-only.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
ReadOnly Property Creator As Integer
    Get
'Usage
Dim instance As TextFrame2
Dim value As Integer

value = instance.Creator
int Creator { get; }

Property Value

Type: System.Int32
Long

Remarks

For example, if a TextFrame2 object was created in PowerPoint, this property returns the hexadecimal number 50575054.

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

Examples

This example displays a message about the creator of the TextFrame2 object.

Public Sub Creator_Example()



    Set pptTextFrame2 = Application.ActivePresentation.Slides(1).Shapes(1).TextFrame2

    If pptTextFrame2.Creator = &H50575054 Then

        MsgBox "This is a PowerPoint object"

    Else

        MsgBox "This is not a PowerPoint object"

    End If

    

End Sub

See Also

Reference

TextFrame2 Interface

TextFrame2 Members

Microsoft.Office.Interop.PowerPoint Namespace