ClassOperatorInfos
Defines the standard set of operators used in spreadsheet formulas, each with metadata for parsing and evaluation.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public static class OperatorInfos
Inheritance: objectOperatorInfos
Fields
Ampersand
Operator info for the text concatenation operator ("&") that joins string values.
Declaration
public static readonly OperatorInfo Ampersand
Field Value
Divide
Operator info for the division operator ("/").
Equal
Operator info for the equality comparison operator ("=").
GreaterThan
Operator info for the greater-than comparison operator (">").
Declaration
public static readonly OperatorInfo GreaterThan
Field Value
GreaterThanOrEqualTo
Operator info for the greater-than-or-equal-to comparison operator (">=").
Declaration
public static readonly OperatorInfo GreaterThanOrEqualTo
Field Value
Intersection
Operator info for the intersection operator (" ") that finds common cells between ranges.
Declaration
public static readonly OperatorInfo Intersection
Field Value
LessThan
Operator info for the less-than comparison operator ("<").
LessThanOrEqualTo
Operator info for the less-than-or-equal-to comparison operator ("<=").
Declaration
public static readonly OperatorInfo LessThanOrEqualTo
Field Value
Minus
Operator info for the subtraction operator ("-").
Multiply
Operator info for the multiplication operator ("*").
NotEqual
Operator info for the inequality comparison operator ("<>").
Percent
Operator info for the percent operator ("%") that divides a value by 100.
Plus
Operator info for the addition operator ("+").
Power
Operator info for the exponentiation operator ("^") that raises a number to a power.
Range
Operator info for the range operator (":") that creates a cell range between two references.
UnaryMinus
Operator info for the unary minus operator ("-") that negates a numeric value.
Declaration
public static readonly OperatorInfo UnaryMinus
Field Value
UnaryPlus
Operator info for the unary plus operator ("+") that preserves the sign of a numeric value.
Declaration
public static readonly OperatorInfo UnaryPlus
Field Value
Union
Operator info for the union operator (",") that combines multiple cell ranges or references.