Class ActionCompleteEventArgs
Represents the information about a OnActionComplete event.
Inheritance
System.Object
ActionCompleteEventArgs
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionCompleteEventArgs : Object
Remarks
This class encapsulates details about an action or command that has been completed within the Rich Text Editor, including the editor mode and the type of request processed.
Constructors
ActionCompleteEventArgs()
Declaration
public ActionCompleteEventArgs()
Properties
EditorMode
Gets the editor mode type, either HTML or Markdown.
Declaration
public string EditorMode { get; }
Property Value
Type | Description |
---|---|
System.String | A string indicating the current editor mode. |
Remarks
The EditorMode property identifies whether the editor is operating in HTML or Markdown mode.
RequestType
Gets the name of the current action or command.
Declaration
public string RequestType { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the action or command name. |
Remarks
The RequestType property indicates the specific command that was completed.