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

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

Graphics クラスの追加とそれに伴う修正

File size: 748 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
28Const Enum 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
38#endif '__SYSTEM_DRAWING_MISC_AB__
Note: See TracBrowser for help on using the repository browser.