@msdn=http://search.microsoft.com/search/results.aspx?qu=DLGC @pinvoke=http://pinvoke.net/$$$.htm 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@msdn on MSDN
Edit Enums.DLGC
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.