CommandButton.ForeShade property (Access)

Gets or sets the shade that is applied to the theme color in the ForeColor property of the specified object. Read/write Single.

Syntax

expression.ForeShade

expression A variable that represents a CommandButton object.

Remarks

The ForeShade property contains a numeric expression that can be used to darken the theme color in the ForeColor property. The default value of the ForeShade property is 100, which is neutral, and does not change the theme color.

To darken the color, first determine the percentage by which to darken from 1 to 100, and then subtract that value as a whole number from 100 and use the remainder. For example, to darken the theme color by 75%, subtract 75 from 100 and use the remainder, which is 25.

This property is not surfaced in the property sheet.

Example

The following code example darkens the ForeColor property by 75%.

Me.ctl.ForeShade=25

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.