source: trunk/ab5.0/ablib/src/Classes/System/Drawing/misc.ab@ 635

Last change on this file since 635 was 635, checked in by NoWest, 16 years ago

名前空間への入れ忘れの修正と
ConsoleクラスのResetColorのバグへ対応。
正しい動作かご確認ください。

File size: 810 bytes
Line 
1' Classes/System/Drawing/misc.ab
2
3Namespace System
4Namespace Drawing
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/*
40 Regular = 0
41 Bold = 1
42 Italic = 2
43 Strikeout = 4
44 Underline = 8
45*/
46End Enum
47
48
49End Namespace
50End Namespace
Note: See TracBrowser for help on using the repository browser.