Interface ICard
Represents a class which defines the properties that can be used to customize a card item in the CardMessage.
Namespace: Syncfusion.Maui.Chat
Assembly: Syncfusion.Maui.Chat.dll
Syntax
public interface ICard
Properties
Buttons
Gets or sets the list of buttons to be displayed at the bottom of the card.
Declaration
IList<CardButton> Buttons { get; set; }
Property Value
Type |
---|
System.Collections.Generic.IList<CardButton> |
Description
Gets or sets the description of the card.
Declaration
string Description { get; set; }
Property Value
Type |
---|
System.String |
Image
Gets or sets the image to be displayed in the card.
Declaration
ImageSource Image { get; set; }
Property Value
Type |
---|
Microsoft.Maui.Controls.ImageSource |
Subtitle
Gets or sets the subtitle of the card.
Declaration
string Subtitle { get; set; }
Property Value
Type |
---|
System.String |
Title
Gets or sets the title of the card.
Declaration
string Title { get; set; }
Property Value
Type |
---|
System.String |