Skip to content

Latest commit

 

History

History
46 lines (26 loc) · 1.34 KB

Access.CheckBox.BorderTint.md

File metadata and controls

46 lines (26 loc) · 1.34 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
CheckBox.BorderTint property (Access)
vbaac10.chm14602
vbaac10.chm14602
Access.CheckBox.BorderTint
57e00b53-89eb-3cee-a075-9eb3c9ab60ee
02/14/2019
medium

CheckBox.BorderTint property (Access)

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

Syntax

expression.BorderTint

expression A variable that represents a CheckBox object.

Remarks

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

To lighten the color, first determine the percentage by which to lighten from 1 to 100, and then subtract that value as a whole number from 100 and use the remainder. For example, to lighten 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 lightens the BorderColor property by 75%.

Me.ctl.BorderTint=25

[!includeSupport and feedback]