source: trunk/ab5.0/ablib/src/Classes/System/Drawing/Drawing2D/Matrix.ab@ 698

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

GDI+をコンパイルできるように修正。FontFamily, Penの追加。サンプルとして、Step 32のGDI+版を制作。
(#56)

File size: 369 bytes
Line 
1' Classes/System/Drawing/Drawing2D/Matrix.ab
2Namespace System
3Namespace Drawing
4Namespace Drawing2D
5
6Class Matrix
7Public
8 Sub Matrix(native As *GpMatrix)
9 nativeMatrix = native
10 End Sub
11 Function NativeMatrix() As *GpMatrix
12 NativeMatrix = nativeMatrix
13 End Function
14 nativeMatrix As *GpMatrix
15End Class
16
17End Namespace
18End Namespace
19End Namespace
Note: See TracBrowser for help on using the repository browser.