You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
815 B
C#

namespace com.azkoss.excellite
{
using System;
///<summary>
///Formula token for holding missed argument( argument with no value ) in argument list of function.
///</summary>
internal class MissArgFormulaToken : FormulaToken
{
// Methods
///<summary>
///Initializes a new instance of the <see cref="com.azkoss.excellite.MissArgFormulaToken" /> class.
///</summary>
public MissArgFormulaToken() : base(FormulaTokenCode.MissArg, 1, FormulaTokenType.Operand)
{
}
///<summary>
///Convert formula token to string representation.
///</summary>
///<returns>formula token string representation</returns>
public override string ToString()
{
return string.Empty;
}
}
}