Skip to main content

HtmlEditorValidationEventArgs(String, String, Boolean) Constructor

Initializes a new instance of the HtmlEditorValidationEventArgs class.

Namespace: DevExpress.Web.ASPxHtmlEditor

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

NuGet Package: DevExpress.Web

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