ClassDocumentVariableEvaluatingEventArgs
Provides data for the DocumentVariableEvaluating event.
Definition
Namespace:Telerik.Windows.Documents.Model
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class DocumentVariableEvaluatingEventArgs : EventArgs
Inheritance: objectEventArgsDocumentVariableEvaluatingEventArgs
Inherited Members
Constructors
DocumentVariableEvaluatingEventArgs(RadDocument, string, object)
Declaration
public DocumentVariableEvaluatingEventArgs(RadDocument document, string variableName, object result)
Parameters
document
variableName
result
Properties
Document
Gets the document associated with the variable evaluating event.
Declaration
public RadDocument Document { get; }
Property Value
The document instance related to the event when evaluating a variable.
Handled
Gets or sets a value indicating whether the event has been handled.
Declaration
public bool Handled { get; set; }
Property Value
true if the event is handled; otherwise, false.
Result
Represents the result of the evaluation of a document variable.
Declaration
public object Result { get; set; }
Property Value
The result of the variable evaluation, providing the evaluated value or an indication of success or failure.
VariableName
Gets the name of the document variable being evaluated.