source: Include/Classes/System/Windows/Forms/misc.ab@ 77

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

Controlの追加とそれに伴う修正

File size: 509 bytes
Line 
1' Classes/System/Windows/Forms/misc.ab
2
3#ifndef __SYSTEM_WINDOWS_FORMS_MISC_AB__
4#define __SYSTEM_WINDOWS_FORMS_MISC_AB__
5
6Interface IWin32Window
7 /*Const*/ Function Handle() As HWND
8End Interface
9
10Enum BoundsSpecified
11 None = 0
12 X = &h1
13 Y = &h2
14 Width = &h4
15 Height = &h8
16 Location = BoundsSpecified.X Or BoundsSpecified.Y
17 Size = BoundsSpecified.Width Or BoundsSpecified.Height
18 All = BoundsSpecified.Location Or BoundsSpecified.Size
19End Enum
20
21#endif '__SYSTEM_WINDOWS_FORMS_MISC_AB__
Note: See TracBrowser for help on using the repository browser.