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

Enables a chat message to report results (change of key properties; action execution).

Definition

Properties

Gets or sets a value that indicates whether the message will automatically report results. Setting it to true will force any properties that are marked with ReportResult attribute to raise the ReportMessageResult event of RadChat.

C#
bool AutoReport { get; set; }

Gets or sets a value that indicates whether the message will be removed after it reports a result.

C#
bool CloseAfterReport { get; set; }

Gets or sets a value that indicates whether response action should create a text inline message with its result. The formatted text result can be found and modified in ReportMessageResult's event arguments.

C#
bool PostResultInline { get; set; }

Gets the collection of ReportActions that are associated with the message. The default UI implementation will visualize them as buttons.

C#
RadObservableCollection<ResponseAction> ReportActions { get; }