Class InlineToolbarItemClickEventArgs
Represents the event arguments for the toolbar item clicked in the SfBlockEditor component.
Inherited Members
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 |
|
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 |
|
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 |
Remarks
This property provides the reference to the toolbar item that triggered the action.