Class ExcelErrorValue.Values
Handles the convertion between eErrorType and the string values
used by Excel.
Inheritance
ExcelErrorValue.Values
Assembly: EPPlus.dll
Syntax
public static class ExcelErrorValue.Values
Fields
Busy
A constant for the Spill error in Excel
Declaration
public const string Busy = "#BUSY!"
Field Value
Calc
A constant for the Calc error in Excel
Declaration
public const string Calc = "#CALC!"
Field Value
Div0
A constant for Div/0 error in Excel
Declaration
public const string Div0 = "#DIV/0!"
Field Value
NA
A constant for the N/A error in Excel
Declaration
public const string NA = "#N/A"
Field Value
Name
A constant for the Name error in Excel
Declaration
public const string Name = "#NAME?"
Field Value
Null
A constant for the Numm error in Excel
Declaration
public const string Null = "#NULL!"
Field Value
Num
A constant for the Num error in Excel
Declaration
public const string Num = "#NUM!"
Field Value
Ref
A constant for the Ref error in Excel
Declaration
public const string Ref = "#REF!"
Field Value
Spill
A constant for the Spill error in Excel
Declaration
public const string Spill = "#SPILL!"
Field Value
Value
A constant for the Value error in Excel
Declaration
public const string Value = "#VALUE!"
Field Value
Methods
IsErrorValue(object)
Returns true if the supplied candidate is an excel error.
Declaration
public static bool IsErrorValue(object candidate)
Parameters
| Type |
Name |
Description |
| object |
candidate |
|
Returns
StringIsErrorValue(string)
Returns true if the supplied candidate is an excel error.
Declaration
public static bool StringIsErrorValue(string candidate)
Parameters
| Type |
Name |
Description |
| string |
candidate |
|
Returns
ToErrorType(string)
Declaration
public static eErrorType ToErrorType(string val)
Parameters
| Type |
Name |
Description |
| string |
val |
|
Returns
Exceptions