Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
50 lines (27 loc) · 1.29 KB

combobox-backtint-property-access.md

File metadata and controls

50 lines (27 loc) · 1.29 KB
title keywords f1_keywords ms.prod api_name ms.assetid ms.date
ComboBox.BackTint Property (Access)
vbaac10.chm14632
vbaac10.chm14632
access
Access.ComboBox.BackTint
37f48215-abce-1628-7efc-ace0d4761873
06/08/2017

ComboBox.BackTint Property (Access)

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

Syntax

expression. BackTint

expression A variable that represents a ComboBox object.

Remarks

The BackTint property contains a numeric expression that can be used to lighten the theme color in the BackColor property. The default value of the BackTint 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, then subtract that value as a whole number from 100 and use the remainder. For example, to lighten the theme color tint 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 BackColor property by 75%.

Me.ctl.BackTint=25

See also

Concepts

ComboBox Object