Provides data for reply bubble click events. Supports both single and multi-reply scenarios.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
public class ReplyBubbleClickedEventArgs : EventArgs
Inheritance: objectEventArgsReplyBubbleClickedEventArgs
Inherited Members
Constructors
Initializes a new instance of the ReplyBubbleClickedEventArgs class.
public ReplyBubbleClickedEventArgs(ChatMessage replyMessage, ChatMessage clickedReplyToMessage)
The message whose reply bubble was clicked.
clickedReplyToMessageChatMessageThe specific message that the reply bubble points to that was clicked.
Properties
Gets the specific message that the clicked reply bubble points to. For single reply, this is the same as ReplyToMessage. For multi-reply, this is the specific message bubble that was clicked.
public ChatMessage ClickedReplyToMessage { get; }
Gets or sets a value indicating whether the event was handled.
public bool Handled { get; set; }
Gets a value indicating whether this is from a multi-reply message.
public bool IsMultiReply { get; }
Gets the message whose reply bubble was clicked.
public ChatMessage ReplyMessage { get; }
Gets the message that was replied to (first message for multi-reply scenarios).
public ChatMessage ReplyToMessage { get; }