Class
ReplyBubbleClickedEventArgs

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:

cs-api-definition
public class ReplyBubbleClickedEventArgs : EventArgs

Inheritance: objectEventArgsReplyBubbleClickedEventArgs

Inherited Members EventArgs.Empty

Constructors

ReplyBubbleClickedEventArgs(ChatMessage, ChatMessage)

Initializes a new instance of the ReplyBubbleClickedEventArgs class.

Declaration

cs-api-definition
public ReplyBubbleClickedEventArgs(ChatMessage replyMessage, ChatMessage clickedReplyToMessage)

Parameters

replyMessage

ChatMessage

The message whose reply bubble was clicked.

clickedReplyToMessage

ChatMessage

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

cs-api-definition
public ChatMessage ClickedReplyToMessage { get; }

Property Value

ChatMessage

Handled

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

Declaration

cs-api-definition
public bool Handled { get; set; }

Property Value

bool

IsMultiReply

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

Declaration

cs-api-definition
public bool IsMultiReply { get; }

Property Value

bool

ReplyMessage

Gets the message whose reply bubble was clicked.

Declaration

cs-api-definition
public ChatMessage ReplyMessage { get; }

Property Value

ChatMessage

ReplyToMessage

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

Declaration

cs-api-definition
public ChatMessage ReplyToMessage { get; }

Property Value

ChatMessage