markus / MarkupToPDF / Controls / Common / SelectControl.cs @ master
이력 | 보기 | 이력해설 | 다운로드 (1019 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Threading.Tasks; |
6 |
|
7 |
namespace MarkupToPDF.Controls.Common |
8 |
{ |
9 |
public enum SelectControl |
10 |
{ |
11 |
#region Line |
12 |
|
13 |
SingleLine, |
14 |
|
15 |
ArrowLine, |
16 |
|
17 |
CancelLine, |
18 |
|
19 |
TwinLine, |
20 |
|
21 |
DimLine, |
22 |
|
23 |
ChainLine, |
24 |
|
25 |
ArcLine, |
26 |
|
27 |
ArcArrow, |
28 |
|
29 |
ArrowMultiLine, |
30 |
|
31 |
#endregion |
32 |
|
33 |
#region Shape |
34 |
|
35 |
Rectangle, |
36 |
|
37 |
RectCloud, |
38 |
|
39 |
Circle, |
40 |
|
41 |
Triangle, |
42 |
|
43 |
#endregion |
44 |
|
45 |
#region Text |
46 |
|
47 |
TextControl, |
48 |
|
49 |
TextBorder, |
50 |
|
51 |
TextCloud, |
52 |
|
53 |
#endregion |
54 |
|
55 |
#region ArrowText |
56 |
|
57 |
ArrowTextControl, |
58 |
|
59 |
ArrowTextBorderControl, |
60 |
|
61 |
ArrowTextCloudControl, |
62 |
|
63 |
#endregion |
64 |
|
65 |
#region Polygone |
66 |
|
67 |
PolygonControl, |
68 |
|
69 |
PolygonCloud, |
70 |
|
71 |
#endregion |
72 |
|
73 |
#region Pen |
74 |
|
75 |
PenControl, |
76 |
|
77 |
#endregion |
78 |
|
79 |
#region Etc |
80 |
ImgControl, |
81 |
Date |
82 |
#endregion |
83 |
} |
84 |
} |