Color.DisabledTextColor

From Xojo Documentation

Method

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

Usage

result = Color.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.DrawingColor = Color.DisabledTextColor
g.DrawString("This is my text", 10, 50, 100, False) // disabled text color

See Also

Color for a complete list of functions