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

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

misc

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