ImageEn, unit iexColorCurve

TIEColorCurve.CurveColor

TIEColorCurve.CurveColor


Declaration

property CurveColor: TColor;


Description

Specifies the color of the curve.

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

Default: clBlack


Example

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