Class DocumentVariableEvaluatingEventArgs
Provides data for the DocumentVariableEvaluating event.
Inheritance
Namespace: Telerik.Windows.Documents.Model
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class DocumentVariableEvaluatingEventArgs : EventArgs
Constructors
DocumentVariableEvaluatingEventArgs(RadDocument, String, Object)
Declaration
public DocumentVariableEvaluatingEventArgs(RadDocument document, string variableName, object result)
Parameters
RadDocument
document
|
System.String
variableName
|
System.Object
result
|
Properties
Document
Gets the document associated with the variable evaluating event.
Declaration
public RadDocument Document { get; }
Property Value
RadDocument
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
System.Boolean
|
Result
Represents the result of the evaluation of a document variable.
Declaration
public object Result { get; set; }
Property Value
System.Object
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.
Declaration
public string VariableName { get; }
Property Value
System.String
|