[This is preliminary documentation and is subject to change.]
Predefined window longs for WindowLong[([( WindowLongs])])
Namespace: Tools.API.PublicAssembly: Tools.Win (in Tools.Win.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
public enum WindowLongs |
| Visual Basic |
|---|
Public Enumeration WindowLongs |
| Visual C++ |
|---|
public enum class WindowLongs |
| F# |
|---|
type WindowLongs |
| JScript |
|---|
public enum WindowLongs |
Members
| Member name | Value | Description | |
|---|---|---|---|
| ExStyle | -20 | Retrieves the extended window styles. For more information, see CreateWindowEx. | |
| Style | -16 | Retrieves the window styles. | |
| WndProc | -4 | Retrieves the address of the window procedure, or a handle representing the address of the window procedure. You must use the CallWindowProc function to call the window procedure. | |
| HInstance | -6 | Retrieves a handle to the application instance. | |
| hWndParent | -8 | Retrieves a handle to the parent window, if any. | |
| Id | -12 | Retrieves the identifier of the window. | |
| UserData | -21 | Retrieves the user data associated with the window. This data is intended for use by the application that created the window. Its value is initially zero. | |
| DlgProc | 4 | Retrieves the address of the dialog box procedure, or a handle representing the address of the dialog box procedure. You must use the CallWindowProc function to call the dialog box procedure. | |
| MsgResult | 0 | Retrieves the return value of a message processed in the dialog box procedure. | |
| User | 8 | Retrieves extra information private to the application, such as handles or pointers. | |
| IsFlags | Gets value indicating if given value is of enum type which has FlagsAttribute applied | ||
| GetName | Gets name of given enumeration value | ||
| GetConstant | Gets constant field that represents given enum value | ||
| GetValue | Gets value of enum in its unedlying type | ||
| IsDefined | Gets value idicating if given value is defined as constant in enumeration |