ASPxHtmlEditor.Html Property
Specifies the HTML markup that is the ASPxHtmlEditor‘s content.
Namespace: DevExpress.Web.ASPxHtmlEditor
Assembly: DevExpress.Web.ASPxHtmlEditor.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
String | String.Empty | The editor’s HTML markup. |
Remarks
Use the Html property to access the ASPxHtmlEditor‘s content.
The ASPxClientHtmlEditor.GetHtml and ASPxClientHtmlEditor.SetHtml methods allow you to get and set editor content on the client side.
Example
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server"
ClientInstanceName="htmlEditor"
Html="<STRONG>Sample Text</STRONG>" >
</dx:ASPxHtmlEditor>
See Also