ColorFormat.ObjectThemeColor Property (PowerPoint)
Returns or sets the theme color of the specified ColorFormat object. Read/Write.
Syntax
expression .ObjectThemeColor
expression An expression that returns a ColorFormat object.
Return Value
MsoThemeColorIndex
Remarks
The value of the ObjectThemeColor property can be one of these MsoThemeColorIndex constants.
Example
The following example shows how to use the ObjectThemeColor property to get the theme color of the foreground fill of shape one on slide one of the active presentation.
Public Sub ObjectThemeColor_Example()
Debug.Print ActivePresentation.Slides(1).Shapes(1).Fill.ForeColor.ObjectThemeColor
End Sub