Skip to main content
A newer version of this page is available. .

CaptchaValidationSettings.ErrorDisplayMode Property

Gets or sets a value that specifies how an error message is represented within the editor’s error frame.

Namespace: DevExpress.Web.Captcha

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(ErrorDisplayMode.Text)]
public ErrorDisplayMode ErrorDisplayMode { get; set; }

Property Value

Type Default Description
ErrorDisplayMode **Text**

One of the ErrorDisplayMode enumeration values.

Available values:

Name Description
Text

An error message is represented by text only.

ASPxEditors_Text

ImageWithTooltip

An error message is represented by an error image. The image’s tooltip displays an error text. If an assigned error image is incorrect, an error message is represented by an error text directly.

ASPxEditors_ImageWithTooltip

ImageWithText

An error message is represented by both an error image and error text.

ASPxEditors_ ImageWithText

None

No error message is displayed, a specific error frame is displayed near the editor instead.

ASPxEditors_None

Property Paths

You can access this nested property as listed below:

Object Type Path to ErrorDisplayMode
ASPxCaptcha
.ValidationSettings.ErrorDisplayMode
CaptchaSettings
.ValidationSettings.ErrorDisplayMode
MVCxCaptcha
.ValidationSettings.ErrorDisplayMode

Remarks

The default value of this property depends upon whether an editor is used as standalone or as inplace (within, for example, the ASPxGridView). For a standalone editor, the ErrorDisplayMode property’s default value is ErrorDisplayMode.ImageWithText. For an inplace editor, the default value is ErrorDisplayMode.ImageWithTooltip.

Example

The following part of the ASPxCaptcha - Features online demo illustrates how to customize the challenge image‘s style settings.

These settings are specified within a panel (ASPxComboBox, ASPxColorEdit editors) and applied to the captcha control via the Apply button (ASPxButton).

protected void btnApply_Click(object sender, EventArgs e) {
...
    int parseResult = 0;
    Captcha.ChallengeImage.FontFamily = cbFontFamily.Value.ToString();
    Captcha.ChallengeImage.ForegroundColor = ceForegroundColor.Color;
    Captcha.ChallengeImage.BackgroundColor = ceBackgroundColor.Color;
    Captcha.ChallengeImage.BorderColor = ceBorderColor.Color;
    if (int.TryParse(seBorderWidth.Text, out parseResult))
        Captcha.ChallengeImage.BorderWidth = parseResult;
...
}
See Also