Class OperatorInfo
Provides properties describing and operator.
Inheritance
System.Object
OperatorInfo
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class OperatorInfo
Constructors
OperatorInfo(String, Int32, OperatorAssociativity)
Initializes a new instance of the OperatorInfo class.
Declaration
public OperatorInfo(string symbol, int precedence, OperatorAssociativity associativity)
Parameters
System.String
symbol
The symbol. |
System.Int32
precedence
The precedence. |
OperatorAssociativity
associativity
The associativity. |
Properties
Associativity
Gets the associativity.
Declaration
public OperatorAssociativity Associativity { get; }
Property Value
OperatorAssociativity
The associativity. |
Precedence
Gets the precedence.
Declaration
public int Precedence { get; }
Property Value
System.Int32
The precedence. |
Symbol
Gets the symbol.
Declaration
public string Symbol { get; }
Property Value
System.String
The symbol. |