alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class ActionBeginEventArgs

    Represents the information about a OnActionBegin event.

    Inheritance
    object
    ActionBeginEventArgs
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.RichTextEditor
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class ActionBeginEventArgs
    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
    bool

    true if the action should be canceled; otherwise false.

    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
    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
    string

    A string representing the action or command name.

    Remarks

    The RequestType property provides the specific command that is being initiated.

    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved