Class ChatTypingIndicator
Represents a class which contains the functionality for the typing indicator which is shown at bottom of the SfChat.
Inheritance
System.Object
ChatTypingIndicator
Namespace: Syncfusion.Maui.Chat
Assembly: Syncfusion.Maui.Chat.dll
Syntax
public class ChatTypingIndicator : BindableObject
Constructors
ChatTypingIndicator()
Initializes a new instance of the ChatTypingIndicator class.
Declaration
public ChatTypingIndicator()
Fields
AuthorsProperty
Identifies the Authors Microsoft.Maui.Controls.BindableProperty.
Declaration
public static readonly BindableProperty AuthorsProperty
Field Value
Type |
---|
Microsoft.Maui.Controls.BindableProperty |
AvatarViewTypeProperty
Identifies the AvatarViewType Microsoft.Maui.Controls.BindableProperty.
Declaration
public static readonly BindableProperty AvatarViewTypeProperty
Field Value
Type |
---|
Microsoft.Maui.Controls.BindableProperty |
TextProperty
Identifies the Text Microsoft.Maui.Controls.BindableProperty.
Declaration
public static readonly BindableProperty TextProperty
Field Value
Type |
---|
Microsoft.Maui.Controls.BindableProperty |
Properties
Authors
Gets or sets the collection of authors details. Typing indicator’s avatar image is displayed based on the AvatarViewType property.
Declaration
public IList<Author> Authors { get; set; }
Property Value
Type |
---|
System.Collections.Generic.IList<Author> |
AvatarViewType
Gets or sets the type of the avatar view in typing indicator.
Declaration
public AvatarViewType AvatarViewType { get; set; }
Property Value
Type |
---|
AvatarViewType |
Text
Gets or sets the text to be displayed in typing indicator.
Declaration
public string Text { get; set; }
Property Value
Type |
---|
System.String |