[This is preliminary documentation and is subject to change.]

Predefined window longs for WindowLong[([( WindowLongs])])

Namespace: Tools.API.Public
Assembly: 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 nameValueDescription
ExStyle-20Retrieves the extended window styles. For more information, see CreateWindowEx.
Style-16Retrieves the window styles.
WndProc-4Retrieves 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-6Retrieves a handle to the application instance.
hWndParent-8Retrieves a handle to the parent window, if any.
Id-12Retrieves the identifier of the window.
UserData-21Retrieves 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.
DlgProc4Retrieves 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.
MsgResult0Retrieves the return value of a message processed in the dialog box procedure.
User8Retrieves extra information private to the application, such as handles or pointers.
IsFlagsGets value indicating if given value is of enum type which has FlagsAttribute applied
GetNameGets name of given enumeration value
GetConstantGets constant field that represents given enum value
GetValueGets value of enum in its unedlying type
IsDefinedGets value idicating if given value is defined as constant in enumeration

See Also