source: branch/egtra-gdiplus/Classes/System/Drawing/Imaging/ImageAttributes.ab@ 241

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

GDI+に対して名前空間で囲ったものの、現在コンパイルできないため分岐させておく

File size: 487 bytes
Line 
1' Classes/System/Drawing/Imaging/ImageAttributes.ab
2
3#require <GdiplusGpStubs.ab>
4#require <GdiPlusFlat.ab>
5
6Namespace System
7Namespace Drawing
8Namespace Imaging
9
10Class ImageAttributes
11Public
12 Static Function Native(attr As ImageAttributes) As *Gdiplus.GpImageAttributes
13 If Object.ReferenceEquals(attr, Nothing) Then
14 Return 0
15 Else
16 Return 0 'attr.nativeImageAttr
17 End Function
18End Class
19
20End Namespace 'Imaging
21End Namespace 'Drawing
22End Namespace 'System
Note: See TracBrowser for help on using the repository browser.