GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / CalcError Enumeration


CalcError Enumeration
Represents a calculation error.
Syntax
'Declaration
 
Public Enum CalcError 
   Inherits System.Enum
 
'Usage
 
Dim instance As CalcError
Members
MemberDescription
BlockedA Blocked error will show as #BLOCKED!. The error indicates that the connection to the service was blocked.
BusyA Busy error will show as #BUSY!. The error indicates that we are waiting on data from the service.
CalcA Calc error will show as #CALC!. The error indicates a scenario currently unsupported by the calculation engine.
ConnectA Connect error will show as #CONNECT!. The error indicates that an attempt to connect to the service has failed.
DivideByZero#DIV/0!
External#EXTERNAL!
FieldA Field error will show as #FIELD!. The error indicates that a rich value key was not found.
GettingData#GETTING_DATA
NameA Name error will show as #NAME?. The error indicates that a formula contained unrecognized text.
NoneThere is no error. This value is used internally and it is not supposed to be used directly in your code.
NotAvailable#N/A
Null#NULL!
Number#NUM!
Reference#REF!
SpillA Spill error will show as #SPILL!. The error indicates that a formula result cannot be shown due to non-empty adjacent cells.
UnknownAn Unknown error will show as #UNKNOWN!. The error indicates a rich value with an unknown rich value type.
Value#VALUE!
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         GrapeCity.CalcEngine.CalcError

See Also