Class ChatItem
Represents a model for a message item displayed in the chat.
Inheritance
System.Object
ChatItem
Namespace: Telerik.Maui.Controls.Chat
Assembly: Telerik.Maui.Controls.dll
Syntax
public class ChatItem : BindableObject
Constructors
ChatItem()
Declaration
public ChatItem()
Fields
ChatProperty
Identifies the Chat property.
Declaration
public static readonly BindableProperty ChatProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
DataProperty
Identifies the Data property.
Declaration
public static readonly BindableProperty DataProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
Chat
Gets the RadChat control that owns the item.
Declaration
public RadChat Chat { get; }
Property Value
RadChat
|
Data
Gets or sets some custom information about the particular item. 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
|