Class
FieldComparison

Captures the left operand, comparison operator, and right operand of a conditional comparison in an IF field.

Definition

Namespace:Telerik.Windows.Documents.Flow.Model.Fields.FieldCode

Assembly:Telerik.Windows.Documents.Flow.dll

Syntax:

cs-api-definition
public class FieldComparison

Inheritance: objectFieldComparison

Properties

IsLeftArgumentQuoted

Gets whether the left operand was enclosed in quotes, affecting how it's evaluated as a literal versus a reference.

Declaration

cs-api-definition
public bool IsLeftArgumentQuoted { get; }

Property Value

bool

The value indicating that the left argument is quoted.

IsRightArgumentQuoted

Gets whether the right operand was enclosed in quotes, affecting how it's evaluated as a literal versus a reference.

Declaration

cs-api-definition
public bool IsRightArgumentQuoted { get; }

Property Value

bool

The value indicating that the right argument is quoted.

LeftArgument

Gets the left operand text used in the comparison.

Declaration

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

Property Value

string

The left.

Operator

Gets the comparison operator text (e.g., '=', '>', '<', '<>', '>=', '<=') used between operands.

Declaration

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

Property Value

string

The operator.

RightArgument

Gets the right operand text used in the comparison.

Declaration

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

Property Value

string

The right argument.