source:
trunk/Include/Classes/System/Drawing/misc.ab@
499
Last change on this file since 499 was 473, checked in by , 17 years ago | |
---|---|
File size: 851 bytes |
Rev | Line | |
---|---|---|
[11] | 1 | ' Classes/System/Drawing/misc.ab |
2 | ||
3 | #ifndef __SYSTEM_DRAWING_MISC_AB__ | |
4 | #define __SYSTEM_DRAWING_MISC_AB__ | |
5 | ||
6 | Enum 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 | |
26 | End Enum | |
27 | ||
[104] | 28 | Enum GraphicsUnit |
[33] | 29 | World ' 0 |
30 | Display ' 1 | |
31 | Pixel ' 2 | |
32 | Point ' 3 | |
33 | Inch ' 4 | |
34 | Document ' 5 | |
35 | Millimeter ' 6 | |
36 | End Enum | |
37 | ||
[137] | 38 | Enum FontStyle |
[473] | 39 | /* |
[137] | 40 | Regular = 0 |
41 | Bold = 1 | |
42 | Italic = 2 | |
43 | Strikeout = 4 | |
44 | Underline = 8 | |
[473] | 45 | */ |
[137] | 46 | End Enum |
47 | ||
48 | ||
[11] | 49 | #endif '__SYSTEM_DRAWING_MISC_AB__ |
Note:
See TracBrowser
for help on using the repository browser.