Class ToolbarItemClickEventArgs
Provides data for the event when an item is clicked in the footer toolbar.
Inherited Members
Namespace: Syncfusion.Blazor.InteractiveChat
Assembly: Syncfusion.Blazor.InteractiveChat.dll
Syntax
public class ToolbarItemClickEventArgs
Constructors
ToolbarItemClickEventArgs()
Declaration
public ToolbarItemClickEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the item click action should be cancelled or not.
Declaration
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | A boolean value indicating whether the item click action should be cancelled. The default is |
Remarks
This property can be used to cancel the toolbar item click action in the SfInlineAIAssist component.
Event
Gets the mouse event informations.
Declaration
public MouseEventArgs Event { get; set; }
Property Value
| Type | Description |
|---|---|
| MouseEventArgs | A MouseEventArgs object representing the mouse event information associated with the event. |
Item
Gets or sets the toolbar item associated with the item click in the SfInlineAIAssist component.
Declaration
public InlineToolbarItem Item { get; set; }
Property Value
| Type | Description |
|---|---|
| InlineToolbarItem | The toolbar item associated with the item click. |
Remarks
This property representing the item associated with the toolbar item in the SfInlineAIAssist component.