Skip to content

Latest commit

 

History

History
46 lines (26 loc) · 1.33 KB

Access.Attachment.BackShade.md

File metadata and controls

46 lines (26 loc) · 1.33 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Attachment.BackShade property (Access)
vbaac10.chm14633
vbaac10.chm14633
Access.Attachment.BackShade
23a28b72-b30c-4b2c-77c9-51bb0099efe9
02/07/2019
medium

Attachment.BackShade property (Access)

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

Syntax

expression.BackShade

expression A variable that represents an Attachment object.

Remarks

The BackShade property contains a numeric expression that can be used to darken the theme color in the BackColor property. The default value of the BackShade 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 BackColor property by 75%.

Me.ctl.BackShade=25

[!includeSupport and feedback]