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

ASPxClientHtmlEditor.SetEnabled(value) Method

Specifies whether an editor is enabled.

Declaration

SetEnabled(
    value: boolean
): void

Parameters

Name Type Description
value boolean

true to enable the editor; false to disable it.

Remarks

Use the SetEnabled method on the client to dynamically change an editor’s ability to respond to end-user interactions (such as mouse clicks or text input). An editor’s initial availability state can be defined by using the ASPxHtmlEditor.ClientEnabled property.

Note

The SetEnabled method is not in effect if an editor is initially disabled on the server by setting the Enabled property to false.

See Also