Class EditorMode
Specifies which type of content is to be edited in the SfRichTextEditor.
Inheritance
System.Object
EditorMode
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class EditorMode : Enum
Remarks
The editor can switch between HTML or Markdown content editing modes, determining how content is presented and manipulated.
Fields
HTML
The Rich Text Editor allows editing of HTML markup content.
Declaration
public const EditorMode HTML
Field Value
Type | Description |
---|---|
EditorMode | Indicates the editor should work with HTML formatted content. |
Remarks
Ideal for users needing rich styling and structured content using HTML tags.
Markdown
The Rich Text Editor allows editing of Markdown content.
Declaration
public const EditorMode Markdown
Field Value
Type | Description |
---|---|
EditorMode | Indicates the editor should work with Markdown formatted content. |
Remarks
Suitable for users preferring lightweight, plain text formatting.