New to Telerik UI for WinFormsStart a free 30-day trial

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:

C#
public class ReplyBubbleClickedEventArgs : EventArgs

Inheritance: objectEventArgsReplyBubbleClickedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ReplyBubbleClickedEventArgs class.

C#
public ReplyBubbleClickedEventArgs(ChatMessage replyMessage, ChatMessage clickedReplyToMessage)
Parameters:replyMessageChatMessage

The message whose reply bubble was clicked.

clickedReplyToMessageChatMessage

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

C#
public ChatMessage ClickedReplyToMessage { get; }

Gets or sets a value indicating whether the event was handled.

C#
public bool Handled { get; set; }

Gets a value indicating whether this is from a multi-reply message.

C#
public bool IsMultiReply { get; }

Gets the message whose reply bubble was clicked.

C#
public ChatMessage ReplyMessage { get; }

Gets the message that was replied to (first message for multi-reply scenarios).

C#
public ChatMessage ReplyToMessage { get; }