Creator Property

Microsoft Graph Visual Basic

XlCreator can be one of these XlCreator constants.
xlCreatorCode

expression.Creator

expression    Required. An expression that returns one of the objects in the Applies To list.

Example

This example displays a message about the creator of myChart.

If myChart.Creator = &h4D534752 Then
    MsgBox "This is a Microsoft Graph object"
Else
    MsgBox "This is not a Microsoft Graph object"
End If