Class CardActionContext
Represents the context of a particular action held by a card message.
Inherited Members
Namespace: Telerik.Maui.Controls.Chat
Assembly: Telerik.Maui.Controls.dll
Syntax
public class CardActionContext : NotifyPropertyChangedBase, INotifyPropertyChanged
Constructors
CardActionContext()
Declaration
public CardActionContext()
Properties
Command
Gets or sets the command executed when the card action is selected.
Declaration
public ICommand Command { get; set; }
Property Value
System.Windows.Input.ICommand
|
Data
Gets or sets some custom information about the particular card action context. The RadChat does not use this property anywhere, use this to carry a payload of information for your convenience.
Declaration
public object Data { get; set; }
Property Value
System.Object
|
Text
Gets or sets the text displayed for the card action.
Declaration
public string Text { get; set; }
Property Value
System.String
|