Class FieldComparison
Captures the left operand, comparison operator, and right operand of a conditional comparison in an IF field.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Flow.Model.Fields.FieldCode
Assembly: Telerik.Windows.Documents.Flow.dll
Syntax
public class FieldComparison
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
|
System.Boolean
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
|
System.Boolean
The value indicating that the right argument is quoted. |
LeftArgument
Gets the left operand text used in the comparison.
Declaration
public string LeftArgument { get; }
Property Value
|
System.String
The left. |
Operator
Gets the comparison operator text (e.g., '=', '>', '<', '<>', '>=', '<=') used between operands.
Declaration
public string Operator { get; }
Property Value
|
System.String
The operator. |
RightArgument
Gets the right operand text used in the comparison.
Declaration
public string RightArgument { get; }
Property Value
|
System.String
The right argument. |