source: branch/egtra-gdiplus/Classes/System/Drawing/misc.ab

Last change on this file was 241, checked in by イグトランス (egtra), 17 years ago

GDI+に対して名前空間で囲ったものの、現在コンパイルできないため分岐させておく

File size: 929 bytes
Line 
1' Classes/System/Drawing/misc.ab
2
3#ifndef __SYSTEM_DRAWING_MISC_AB__
4#define __SYSTEM_DRAWING_MISC_AB__
5
6Namespace System
7Namespace Drawing
8
9Enum RotateFlipType
10 RotateNoneFlipNone = 0
11 Rotate90FlipNone = 1
12 Rotate180FlipNone = 2
13 Rotate270FlipNone = 3
14
15 RotateNoneFlipX = 4
16 Rotate90FlipX = 5
17 Rotate180FlipX = 6
18 Rotate270FlipX = 7
19
20 RotateNoneFlipY = 6
21 Rotate90FlipY = 7
22 Rotate180FlipY = 4
23 Rotate270FlipY = 5
24
25 RotateNoneFlipXY = 2
26 Rotate90FlipXY = 3
27 Rotate180FlipXY = 0
28 Rotate270FlipXY = 1
29End Enum
30
31Enum GraphicsUnit
32 World ' 0
33 Display ' 1
34 Pixel ' 2
35 Point ' 3
36 Inch ' 4
37 Document ' 5
38 Millimeter ' 6
39End Enum
40
41Enum FontStyle
42 Regular = 0
43 Bold = 1
44 Italic = 2
45 Strikeout = 4
46 Underline = 8
47End Enum
48
49End Namespace 'Drawing
50End Namespace 'System
51
52#endif '__SYSTEM_DRAWING_MISC_AB__
Note: See TracBrowser for help on using the repository browser.