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

HtmlEditorValidationEventArgs(String, String, Boolean) Constructor

Initializes a new instance of the HtmlEditorValidationEventArgs class.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v18.2.dll

Declaration

public HtmlEditorValidationEventArgs(
    string html,
    string errorText,
    bool isValid
)

Parameters

Name Type Description
html String

A String value that specifies the HTML content to validate. This value is assigned to the HtmlEditorValidationEventArgs.Html property.

errorText String

A String representing the error description. This value is assigned to the HtmlEditorValidationEventArgs.ErrorText property.

isValid Boolean

true if the validation has been completed successfully; otherwise, false. This value is assigned to the HtmlEditorValidationEventArgs.IsValid property.

See Also