CalcEngine for .NET
C1.CalcEngine.ExpressionEngine Namespace / Token Class / Token Constructor
The value of token.
The token identifier.
The token type.

In This Topic
    Token Constructor
    In This Topic
    Initializes a new instance of the Token class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal value As Object, _
       ByVal id As TKID, _
       ByVal type As TKTYPE _
    )
    public Token( 
       object value,
       TKID id,
       TKTYPE type
    )

    Parameters

    value
    The value of token.
    id
    The token identifier.
    type
    The token type.
    See Also