HtmlCorrectingEventArgs.Handled Property
Gets or sets whether an HTML markup correcting operation is handled manually, so no default processing is required.
Namespace: DevExpress.Web.ASPxHtmlEditor
Assembly: DevExpress.Web.ASPxHtmlEditor.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
Boolean |
|
Remarks
If this property is left set to false
, the default HTML markup correcting mechanism (implemented via the ASPxHtmlEditor.CorrectHtml method) will be invoked after the ASPxHtmlEditor.HtmlCorrecting event handler is raised. This might then override the result of your HTML markup correction specified by the HtmlCorrectingEventArgs.Html property.
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" OnHtmlCorrecting="ASPxHtmlEditor1_HtmlCorrecting" runat="server">
...
</dx:ASPxHtmlEditor>
See Also