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