ClassFieldComparison
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:
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
public bool IsLeftArgumentQuoted { get; }
Property Value
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
public bool IsRightArgumentQuoted { get; }
Property Value
The value indicating that the right argument is quoted.
LeftArgument
Gets the left operand text used in the comparison.
Operator
Gets the comparison operator text (e.g., '=', '>', '<', '<>', '>=', '<=') used between operands.
RightArgument
Gets the right operand text used in the comparison.
Declaration
public string RightArgument { get; }
Property Value
The right argument.