The ASPxHtmlEditor allows end-users to operate with content in three view modes. Each mode is activated in a corresponding view, including the following.
Design View
Allows end-users to modify the editor content using various design tools, and instantly see the results.
HTML View
Allows end-users to modify the editor content using HTML markup.
Preview
Allows end-users to view the editor content as a regular webpage.
To activate a specific view mode, use the editor's ASPxHtmlEditor.ActiveView property.
ASPxHtmlEditor1.ActiveView = HtmlEditorView.Html;
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server" ActiveView="Html">
</dx:ASPxHtmlEditor>