markus / MarkupToPDF / Controls / Common / PaintSet.cs @ 80856edb
이력 | 보기 | 이력해설 | 다운로드 (457 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 PaintSet |
10 |
{ |
11 |
None = 0, |
12 | |
13 |
//Rect = 1, |
14 | |
15 |
Fill = 1, |
16 | |
17 |
//Cloud = 2 |
18 | |
19 |
Hatch = 2 |
20 |
}; |
21 |
public enum LineStyleSet |
22 |
{ |
23 |
SingleLine = 0, |
24 | |
25 |
ArrowLine = 1, |
26 | |
27 |
CancelLine = 2, |
28 | |
29 |
TwinLine = 3, |
30 | |
31 |
DimLine = 4 |
32 |
}; |
33 |
} |