__DSI_FLAGS Enumeration
Represents flags indicating what startup information to use in creating a window.
Assembly: Microsoft.VisualStudio.Shell.Interop.10.0 (in Microsoft.VisualStudio.Shell.Interop.10.0.dll)
| Member name | Description | |
|---|---|---|
| DSI_FORCEOFFFEEDBACK | Indicates that the feedback cursor is forced off while the process is starting. The Normal Select cursor is displayed. | |
| DSI_FORCEONFEEDBACK | Indicates that the cursor is in feedback mode for two seconds after CreateProcess is called. The Working in Background cursor is displayed (see the Pointers tab in the Mouse control panel utility). | |
| DSI_INHERITHANDLES | Call CreateProcess with bInheritHandles = TRUE | |
| DSI_RUNFULLSCREEN | Indicates that the process should be run in full-screen mode, rather than in windowed mode. | |
| DSI_USECOUNTCHARS | The dwXCountChars and dwYCountChars members contain additional information. | |
| DSI_USECREATIONFLAGS | the dwCreationFlags field of VsDebugStartupInfo is valid and should be passed to CreateProcess | |
| DSI_USEFILLATTRIBUTE | The dwFillAttribute member contains additional information. | |
| DSI_USEPOSITION | The dwX and dwY members contain additional information. | |
| DSI_USESHOWWINDOW | The wShowWindow member contains additional information. | |
| DSI_USESIZE | The dwXSize and dwYSize members contain additional information. | |
| DSI_USESTDHANDLES | The hStdInput, hStdOutput, and hStdError members contain additional information. |
These flags match the flags used in the Windows STARTUPINFO structure.