Method

DarkBevelColor


Warning

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

Description

The currently selected operating systems color for drawing dark lines in Groupboxes.

Usage

result = DarkBevelColor

Part

Type

Description

result

Color

The color used for drawing the dark lines in dividing lines and group boxes.

Notes

Note

This color value does not change when Color.IsDarkMode is True.

This value is useful when you are using Canvas controls to create custom controls. When drawing controls like dividing Lines and GroupBoxes, use this color for the dark portions of the object (usually the right and bottom sides of the object).

This value can be changed by the user, so you should access this value in the Paint event handler rather than storing the value.

Sample code

The following example uses the constants Color.LightBevelColor and DarkBevelColor in a Canvas object that has a raised 3D look. This code is in the Paint event.

Const White = &cffffff
g.ForeColor = White
g.DrawLine(1, 1, Canvas1.Width, 1)
g.DrawLine(1, Canvas1.Height - 1, 1, 1)
g.ForeColor = DarkBevelColor
g.DrawLine(Canvas1.Width - 1, 2, Canvas1.Width-1, Canvas1.Height)
g.DrawLine(1, Canvas1.Height - 1, Canvas1.Width, Canvas1.Height - 1)

// fill in the light gray rectangle
g.ForeColor = LightBevelColor
g.FillRect(2, 2, Canvas1.Width - 3, Canvas1.Height - 3)

Compatibility

All project types on all supported operating systems.