Class MessageToolbarItemClickedEventArgs
Inheritance
Namespace: Syncfusion.Blazor.InteractiveChat
Assembly: Syncfusion.Blazor.dll
Syntax
public class MessageToolbarItemClickedEventArgs : Object
Constructors
MessageToolbarItemClickedEventArgs()
Declaration
public MessageToolbarItemClickedEventArgs()
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 |
---|---|
System.Boolean | 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 SfChatUI component.
Event
Gets the mouse event informations.
Declaration
public MouseEventArgs Event { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Web.MouseEventArgs | A Microsoft.AspNetCore.Components.Web.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 SfChatUI component.
Declaration
public MessageToolbarItem Item { get; set; }
Property Value
Type | Description |
---|---|
MessageToolbarItem | The toolbar item associated with the item click. |
Remarks
This property representing the item associated with the toolbar item in the SfChatUI component.
Message
Gets or sets the message associated with the toolbar item click.
Declaration
public ChatMessage Message { get; set; }
Property Value
Type | Description |
---|---|
ChatMessage | The ChatMessage object representing the message that was clicked. |
Remarks
This property provides details of the chat message that was interacted with in the SfChatUI component.