alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class InlineToolbarItemClickEventArgs

    Represents the event arguments for the toolbar item clicked in the SfBlockEditor component.

    Inheritance
    object
    InlineToolbarItemClickEventArgs
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.BlockEditor
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class InlineToolbarItemClickEventArgs

    Constructors

    InlineToolbarItemClickEventArgs()

    Declaration
    public InlineToolbarItemClickEventArgs()

    Properties

    Cancel

    Gets or sets a value indicating whether the toolbar item click action should be canceled in the SfBlockEditor.

    Declaration
    public bool Cancel { get; set; }
    Property Value
    Type Description
    bool

    true to cancel the action and prevent default behavior; otherwise, false. The default is false.

    Remarks

    This property allows you to prevent the default behavior associated with the toolbar item click.

    IsInteracted

    Gets or sets a value indicating whether the toolbar item was interacted with by the user in the SfBlockEditor.

    Declaration
    public bool IsInteracted { get; set; }
    Property Value
    Type Description
    bool

    true if the action was triggered by user interaction; otherwise, false. The default is false.

    Remarks

    Use this property to determine if the toolbar item was triggered by a user click or programmatic action.

    Item

    Gets or sets the inline toolbar item that was clicked in the SfBlockEditor.

    Declaration
    public InlineToolbarItemModel Item { get; set; }
    Property Value
    Type Description
    InlineToolbarItemModel

    A InlineToolbarItemModel object representing the clicked toolbar item. The default value is null.

    Remarks

    This property provides the reference to the toolbar item that triggered the action.

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