Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
DLGC (Enums)
.
C# Definition:
enum DLGC
{
/// <summary> Control is a button (of any kind). </summary>
DLGC_BUTTON = 0x2000,
/// <summary> Control is a default push button. </summary>
DLGC_DEFPUSHBUTTON = 0x0010,
/// <summary> Windows will send an EM_SETSEL message to the control to select its contents. </summary>
DLGC_HASSETSEL = 0x0008,
/// <summary> Control is an option (radio) button. </summary>
DLGC_RADIOBUTTON = 0x0040,
/// <summary> Control is a static control. </summary>
DLGC_STATIC = 0x0100,
/// <summary> Control is a push button but not the default push button. </summary>
DLGC_UNDEFPUSHBUTTON = 0x0020,
/// <summary> Control processes all keyboard input. </summary>
DLGC_WANTALLKEYS = 0x0004,
/// <summary> Control processes arrow keys. </summary>
DLGC_WANTARROWS = 0x0001,
/// <summary> Control processes WM_CHAR messages. </summary>
DLGC_WANTCHARS = 0x0080,
/// <summary> Control processes the message in the MSG structure that lParam points to. </summary>
DLGC_WANTMESSAGE = 0x0004,
/// <summary> Control processes the TAB key. </summary>
DLGC_WANTTAB = 0x0002
}
VB Definition:
Enum DLGC
TODO
End Enum
Notes:
None.
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!