-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathCellError.cs
More file actions
52 lines (43 loc) · 993 Bytes
/
Copy pathCellError.cs
File metadata and controls
52 lines (43 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
namespace ExcelDataReader;
#pragma warning disable SA1629 // Documentation text should end with a period
/// <summary>
/// Formula error.
/// </summary>
public enum CellError : byte
{
/// <summary>
/// #NULL!
/// </summary>
NULL = 0x00,
/// <summary>
/// #DIV/0!
/// </summary>
DIV0 = 0x07,
/// <summary>
/// #VALUE!
/// </summary>
VALUE = 0x0F,
/// <summary>
/// #REF!
/// </summary>
REF = 0x17,
/// <summary>
/// #NAME?
/// </summary>
NAME = 0x1D,
/// <summary>
/// #NUM!
/// </summary>
NUM = 0x24,
/// <summary>
/// #N/A
/// </summary>
NA = 0x2A,
/// <summary>
/// #GETTING_DATA
/// </summary>
#pragma warning disable CA1707 // Identifiers should not contain underscores
GETTING_DATA = 0x2B,
#pragma warning restore CA1707 // Identifiers should not contain underscores
}
#pragma warning restore SA1629 // Documentation text should end with a period