-
Notifications
You must be signed in to change notification settings - Fork 21
/
Enums.cs
71 lines (67 loc) · 1.45 KB
/
Enums.cs
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SharpPDFLabel
{
public class Enums
{
/// <summary>
/// The page size of the document
/// See the Switch statement in LabelCreator.CreatePDF() if you add a new one
/// </summary>
public enum PageSize
{
A4
}
/// <summary>
/// The possible styles for a font
/// Taken straight from iTextSharp
/// </summary>
[Flags]
public enum FontStyle
{
BOLD = 1,
BOLDITALIC = 3,
DEFAULTSIZE = 12,
ITALIC = 2,
NORMAL = 0,
STRIKETHRU = 8,
UNDEFINED = -1,
UNDERLINE = 4,
}
public enum FontFamily
{
Arial
}
public enum LabelStyle
{
L5160,
L5162,
L5260,
L5262,
L5520,
L5522,
L5660,
L5810,
L5960,
L5962,
L5970,
L5971,
L5972,
L5979,
L5980,
L7160,
L7654,
L7656,
L8160,
L8162,
L8252,
L8460,
L8462,
L8660,
L8662,
L8810
}
}
}