Class TokenCalc
A single element of the calculator's expression: either a numeric operand or an
arithmetic operator, tracking its decimal-entry factor and whether it has been sealed.
Assembly: Reportman.Drawing.Forms.dll
Constructors
View Source
Declaration
public TokenCalc(TokenCalc.TokenType type)
Parameters
Properties
View Source
Declaration
public int DecimalFactor { get; set; }
Property Value
View Source
Declaration
public bool IsSealed { get; set; }
Property Value
View Source
Declaration
public Number TokenNumber { get; set; }
Property Value
View Source
Declaration
public TokenCalc.TokenType Type { get; set; }
Property Value
Methods
View Source
Declaration
public bool IsLessThanOrEqualTo(TokenCalc tokenCompare)
Parameters
Returns
View Source
Declaration
Returns
View Source
Declaration
Returns
View Source
Declaration
public override string ToString()
Returns
Overrides