Skip to main content

TcxEditValidateInfo.ErrorType Property

Specifies the error icon and its visibility within an editor.

Declaration

property ErrorType: TcxEditErrorType read; write;

Property Value

Type
TcxEditErrorType

Remarks

Options include:

Value Meaning
eetNone No error indication. The error icon specified via the ErrorIcon property is ignored.
eetError The Error icon () stored by the cxEditErrorIcon global variable.
eetWarning The Warning icon () stored by the cxEditWarningIcon global variable.
eetInfo The Information icon () stored by the cxEditInfoIcon global variable.
eetCustom The editor displays the icon specified via the ErrorIcon property.

The eetError, eetWarning, or eetInfo option is in effect only if the ErrorIcon property is assigned nil.

An editor displays an error icon only if the evoShowErrorIcon flag is set within the editor Properties.ValidationOptions property. Refer to the property description to learn how to customize the error indication using TcxEditValidateInfo properties.

See Also