Skip to main content

BootstrapRichEdit Class

A rich text editor control.

Namespace: DevExpress.Web.Bootstrap

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

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[DXClientDocumentationProviderWeb("BootstrapSpreadsheet")]
[ToolboxTabName("DX.23.2: Bootstrap Controls")]
public class BootstrapRichEdit :
    ASPxRichEdit,
    ISimpleRenderControl

Remarks


The BootstrapRichEdit class specifies a visual Rich Text Editor control to create, load, modify, print, save and convert rich formatted text files.

BootstrapRichEdit-class

To work properly, the BootstrapRichEdit requires setting the BootstrapRichEdit.WorkDirectory property to a folder that contains rich text documents in your project.

To programmatically load a document into the BootstrapRichEdit control, use the BootstrapRichEdit.Open method. To save the active document in code, use the BootstrapRichEdit.Save method.

<dx:BootstrapRichEdit ID="RichEdit1" runat="server" />

<input type="submit"/>

Note

The BootstrapRichEdit control provides you with a comprehensive client-side functionality, implemented using JavaScript code:

The control’s client-side API is enabled if the BootstrapRichEdit.EnableClientSideAPI property is set to true, or the BootstrapRichEdit.ClientInstanceName property is defined.

See Also