Method

DisabledTextColor


Warning

This item was deprecated in version 2019r2. Please use Color.DisabledTextColor as a replacement.

Description

The currently selected color for drawing disabled text in a window. By default it is a light gray.

Usage

result = DisabledTextColor

Part

Type

Description

result

Color

The color used for drawing disabled text in the system's graytext color.

Notes

This value is useful when you want to assign the system graytext color to disabled text.

Sample code

This usage of DisabledTextColor affects the second text string. The code is in the Paint event of a Canvas.

g.DrawString("This is my text", 10,10, 100, False) // enabled text color

g.ForeColor = DisabledTextColor
g.DrawString("This is my text", 10, 50, 100, False) // disabled text color

Compatibility

All project types on all supported operating systems.