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
Constructors
C#
public DocumentVariableEvaluatingEventArgs(RadDocument document, string variableName, object result)
Properties
Gets the document associated with the variable evaluating event.
C#
public RadDocument Document { get; }
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; }
true if the event is handled; otherwise, false.
Represents the result of the evaluation of a document variable.
C#
public object Result { get; set; }
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; }