C1.CalcEngine.ExpressionEngine Namespace / TKID Enumeration

TKID Enumeration
Token ID (used when evaluating expressions)
Syntax
'Declaration
 
Public Enum TKID 
   Inherits System.Enum
 
Members
MemberDescription
ADDAdd.
ANDAnd.
ATOMLiteral, Identifier
BAND 
BOR 
CLOSEClose group, example: ')'
COMMASplitter of the arguments list.
CONCATConcatenation.
DIVDivision.
DIVINTDivision for int.
DOT 
ENDEnd of expression.
EQEqual.
GEGreater or equal than.
GTGreater than.
INIn.
LELess or equal than.
LIKELike.
LTLess than.
MODModulus.
MULMultiply.
NENot equal.
NOTNot.
OPENOpen group, example: '('
OROr.
SUBSubtract.
XOR 
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         C1.CalcEngine.ExpressionEngine.TKID

See Also