menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class ChatUserTypingEventArgs - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    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 false.

    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 null.

    Remarks

    This property holds the information about the current user participating in the chat.

    Examples
    <SfChatUI User=”@currentUser”>
    </SfChatUI>
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved