ClassStringBinaryOperatorExpression
Class
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:
cs-api-definition
public abstract class StringBinaryOperatorExpression : BinaryOperatorExpression<string>
Inheritance: objectRadExpressionOperatorExpressionBinaryOperatorExpression<string>StringBinaryOperatorExpression
Derived Classes:
Inherited Members
Constructors
StringBinaryOperatorExpression(RadExpression, RadExpression)
Initializes a new string binary expression with two operands.
Declaration
cs-api-definition
protected StringBinaryOperatorExpression(RadExpression left, RadExpression right)
Parameters
left
The left.
right
The right.
Properties
OperandsType
Gets the required operand type, which is text for string operations.
Declaration
cs-api-definition
public override ArgumentType OperandsType { get; }
Property Value
The type of the operands as ArgumentType.
Overrides