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.

27 lines
606 B
C#

namespace com.azkoss.excellite
{
using System;
///<summary>
///Formula token for holding 3d reference error on internal cell range.
///</summary>
internal class RefErr3dFormulaToken : RefFormulaToken
{
// Methods
public RefErr3dFormulaToken(FormulaTokenCode code) : base(code)
{
}
///<summary>
///Convert formula token to string representation.
///</summary>
///<returns>formula token string representation</returns>
public override string ToString()
{
return "#REF";
}
}
}