예제 #1
0
 // Methods
 ///<summary>
 ///Initializes a new instance of the <see cref="MB.WinEIDrive.Excel.FormulaTokenTypeEx" /> class.
 ///</summary>
 ///<param name="type">The type.</param>
 public FormulaTokenTypeEx(FormulaTokenType type)
 {
     this.type = type;
 }
예제 #2
0
 internal FormulaToken(string value, FormulaTokenType type) : this(value, type, FormulaTokenSubtype.Nothing)
 {
 }
예제 #3
0
 internal FormulaToken(string value, FormulaTokenType type, FormulaTokenSubtype subtype)
 {
     this.value   = value;
     this.type    = type;
     this.subtype = subtype;
 }
예제 #4
0
 public FormulaToken(FormulaTokenCode code, int size, FormulaTokenType type)
 {
     this.token = code;
     this.size  = size;
     this.type  = new FormulaTokenTypeEx(type);
 }