DLGC (Enums)
Last changed: anonymous

.
Summary
TODO - a short description

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.

Documentation
DLGC on MSDN