17 lines
225 B
C#
17 lines
225 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Formula
|
|
{
|
|
public enum FormulaStatus
|
|
{
|
|
Normal,
|
|
SyntaxError,
|
|
CircularReference,
|
|
InvalidValue,
|
|
InvalidReference,
|
|
NameNotFound,
|
|
MismatchedParameter,
|
|
UnspecifiedError
|
|
}
|
|
}
|