Line | |
---|
1 | ' Classes/System/Windows/Forms/misc.ab
|
---|
2 |
|
---|
3 | #ifndef __SYSTEM_WINDOWS_FORMS_MISC_AB__
|
---|
4 | #define __SYSTEM_WINDOWS_FORMS_MISC_AB__
|
---|
5 |
|
---|
6 | Interface IWin32Window
|
---|
7 | /*Const*/ Function Handle() As HWND
|
---|
8 | End Interface
|
---|
9 |
|
---|
10 | Enum BoundsSpecified
|
---|
11 | None = &h0
|
---|
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
|
---|
19 | End Enum
|
---|
20 |
|
---|
21 | #endif '__SYSTEM_WINDOWS_FORMS_MISC_AB__
|
---|
Note:
See
TracBrowser
for help on using the repository browser.