ImageEn, unit iexColorCurve

TIEColorCurve.ErrorAction

TIEColorCurve.ErrorAction

Declaration

property ErrorAction: TIEErrorAction;

Description

Specifies what happens when a user performs an invalid action, such as removing the last points, or adding more than the maximum.

Default: ieeaBeep

Example

// Beep on error
IEColorCurve1.ErrorAction := ieeaBeep;

// Show message on error
IEColorCurve1.ErrorAction := ieeaVerbose;

// Do nothing when there is an error
IEColorCurve1.ErrorAction := ieeaSilent;