Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

DLGC (Enums)
 
.
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
 

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!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions