Class CardTappedEventArgs
Provides data for the CardTapped and CardCommand event.
Inheritance
System.Object
CardTappedEventArgs
Namespace: Syncfusion.Maui.Chat
Assembly: Syncfusion.Maui.Chat.dll
Syntax
public class CardTappedEventArgs : Object
Constructors
CardTappedEventArgs()
Declaration
public CardTappedEventArgs()
Properties
Action
Gets the selected action from the card.
Declaration
public CardButton Action { get; }
Property Value
Type |
---|
CardButton |
Card
Gets the selected card from the CardMessage.
Declaration
public Card Card { get; }
Property Value
Type |
---|
Card |
Handled
Gets or sets a value indicating whether the event should be handled.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true, if event is handled , else false. Default value is true. If set to false the selected value will not be added to the Messages collection. |
Message
Gets the current CardMessage.
Declaration
public ICardMessage Message { get; }
Property Value
Type |
---|
ICardMessage |