ClassReplyBubbleClickedEventArgs
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
ReplyBubbleClickedEventArgs(ChatMessage, ChatMessage)
Initializes a new instance of the ReplyBubbleClickedEventArgs class.
Declaration
public ReplyBubbleClickedEventArgs(ChatMessage replyMessage, ChatMessage clickedReplyToMessage)
Parameters
replyMessage
The message whose reply bubble was clicked.
clickedReplyToMessage
The specific message that the reply bubble points to that was clicked.
Properties
ClickedReplyToMessage
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.
Declaration
public ChatMessage ClickedReplyToMessage { get; }
Property Value
Handled
Gets or sets a value indicating whether the event was handled.
IsMultiReply
Gets a value indicating whether this is from a multi-reply message.
ReplyMessage
Gets the message whose reply bubble was clicked.
ReplyToMessage
Gets the message that was replied to (first message for multi-reply scenarios).