Class
DocumentVariableEvaluatingEventArgs

Provides data for the DocumentVariableEvaluating event.

Definition

Namespace:Telerik.Windows.Documents.Model

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

cs-api-definition
public class DocumentVariableEvaluatingEventArgs : EventArgs

Inheritance: objectEventArgsDocumentVariableEvaluatingEventArgs

Inherited Members EventArgs.Empty

Constructors

DocumentVariableEvaluatingEventArgs(RadDocument, string, object)

Declaration

cs-api-definition
public DocumentVariableEvaluatingEventArgs(RadDocument document, string variableName, object result)

Parameters

document

RadDocument

variableName

string

result

object

Properties

Document

Gets the document associated with the variable evaluating event.

Declaration

cs-api-definition
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

cs-api-definition
public bool Handled { get; set; }

Property Value

bool

true if the event is handled; otherwise, false.

Result

Represents the result of the evaluation of a document variable.

Declaration

cs-api-definition
public object Result { get; set; }

Property Value

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

cs-api-definition
public string VariableName { get; }

Property Value

string