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

Provides data for the DocumentVariableEvaluating event.

Definition

Namespace:Telerik.Windows.Documents.Model

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public class DocumentVariableEvaluatingEventArgs : EventArgs

Inheritance: objectEventArgsDocumentVariableEvaluatingEventArgs

Inherited Members EventArgs.Empty

Constructors

C#
public DocumentVariableEvaluatingEventArgs(RadDocument document, string variableName, object result)
Parameters:documentRadDocumentvariableNamestringresultobject

Properties

Gets the document associated with the variable evaluating event.

C#
public RadDocument Document { get; }
Property Value:

The document instance related to the event when evaluating a variable.

Gets or sets a value indicating whether the event has been handled.

C#
public bool Handled { get; set; }
Property Value:

true if the event is handled; otherwise, false.

Represents the result of the evaluation of a document variable.

C#
public object Result { get; set; }
Property Value:

The result of the variable evaluation, providing the evaluated value or an indication of success or failure.

Gets the name of the document variable being evaluated.

C#
public string VariableName { get; }