Base for binary expressions that operate on string operands, enforcing text argument types.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
C#
public abstract class StringBinaryOperatorExpression : BinaryOperatorExpression<string>
Inheritance: objectRadExpressionOperatorExpressionBinaryOperatorExpression<string>StringBinaryOperatorExpression
Derived Classes:
Inherited Members
Constructors
Initializes a new string binary expression with two operands.
C#
protected StringBinaryOperatorExpression(RadExpression left, RadExpression right, Workbook workbook = null)
The left.
rightRadExpressionThe right.
workbookWorkbookThe workbook.
Properties
Gets the required operand type, which is text for string operations.
C#
public override ArgumentType OperandsType { get; }
The type of the operands as ArgumentType.
Overrides: