Class ChatUserTypingEventArgs
Represents the event arguments for the UserTyping event in the SfChatUI component.
Inheritance
System.Object
ChatUserTypingEventArgs
Namespace: Syncfusion.Blazor.InteractiveChat
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChatUserTypingEventArgs : Object
Constructors
ChatUserTypingEventArgs()
Declaration
public ChatUserTypingEventArgs()
Properties
IsTyping
Gets or sets a value indicating whether the user is typing in the SfChatUI component.
Returns true
when the user ends typing and false
when the message is sent or user value is cleared.
Declaration
public bool IsTyping { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A System.Boolean indicating the typing status. The default value is |
Remarks
This property specifies whether the user is actively typing a message within the SfChatUI component.
User
Gets or sets the current user details in the SfChatUI component.
Declaration
public UserModel User { get; set; }
Property Value
Type | Description |
---|---|
UserModel | A list of UserModel representing the current user. The default value is |
Remarks
This property holds the information about the current user participating in the chat.
Examples
<SfChatUI User=”@currentUser”>
</SfChatUI>