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

Rich Text Editor

The DevExpress ASP.NET Core Rich Edit control allows you to incorporate advanced text editing functionality, such as format and edit characters, paragraphs, lists, tables, floating objects, etc.

Rich Text Editor Overview

The following code adds a simple RichEdit to your page:

@(Html.DevExpress().RichEdit("DemoRichEdit")
    .Height(600)
    .Open("Documents/Example.docx")
)

See the Getting Started for instructions on how to integrate a Rich Text Editor into an ASP.NET Core application.

See Also