ColorStop.ThemeColor property (Excel)

Returns or sets the theme color of the represented object. Read/write.

Syntax

expression.ThemeColor

expression A variable that represents a ColorStop object.

Return value

Long

Example

Applies theme color to the active selection.

Range("A1:A10").Select 
With Selection.Interior.Gradient.ColorStop.Add(1) 
 .ThemeColor = xlThemeColorAccent1 
 .TintAndShade = 0 
End With

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.