ImageEn, unit iexColorCurve

TIEColorCurve.BackgroundColor

TIEColorCurve.BackgroundColor


Declaration

property BackgroundColor: TColor;


Description

Specifies the color within the curve frame.

Notes:
- You must call Update after changing colors
- If a standard color, such as clWindow is used, it may be overridden by VCL theming colors. Set EnableTheming to false to prevent this

Default: clWhite


Example

// Make control support theming
IEColorCurve1.BackgroundColor := clWindow;
IEColorCurve1.CurveColor := clWindowText;
IEColorCurve1.GuidelineColor := cl3DLight;
IEColorCurve1.Update();