Class ActionBeginEventArgs
Represents the information about a OnActionBegin event.
Inheritance
System.Object
ActionBeginEventArgs
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionBeginEventArgs : Object
Remarks
This class contains details about the initiation of an action or command within the RichTextEditor, allowing cancellation if necessary.
Constructors
ActionBeginEventArgs()
Declaration
public ActionBeginEventArgs()
Properties
Cancel
Gets or sets whether the current action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
Use this property to determine whether the current action should proceed or be canceled.
ExportValue
Gets or sets the content for export.
Declaration
public string ExportValue { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string containing the content to be exported. |
Remarks
ExportValue is used during export actions to define the content that should be exported.
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 provides the specific command that is being initiated.