Class SendMessageEventArgs
Provides the data for the SendMessage event.
Inheritance
System.Object
SendMessageEventArgs
Namespace: Syncfusion.Maui.Chat
Assembly: Syncfusion.Maui.Chat.dll
Syntax
public class SendMessageEventArgs : Object
Constructors
SendMessageEventArgs()
Declaration
public SendMessageEventArgs()
Properties
Handled
Gets or sets a value indicating whether the event should be handled.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true, if event is handled and, else false. Default value is true. If set to false the message sent by the user will not be added to the SfChat.Messages collection. |
Message
Gets the instance of the user message that is going to be added to the Messages collection.
Declaration
public TextMessage Message { get; }
Property Value
Type |
---|
TextMessage |