source: Include/Classes/System/Drawing/misc.ab@ 137

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

#55#73#75とりあえず完了

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