AppWinStyle Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates the window style to use for the invoked program when calling the Shell
function.
public enum class AppWinStyle
public enum AppWinStyle
type AppWinStyle =
Public Enum AppWinStyle
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Hide | 0 | Window is hidden and focus is passed to the hidden window. This member is equivalent to the Visual Basic constant |
NormalFocus | 1 | Window has focus and is restored to its original size and position. This member is equivalent to the Visual Basic constant |
MinimizedFocus | 2 | Window is displayed as an icon with focus. This member is equivalent to the Visual Basic constant |
MaximizedFocus | 3 | Window is maximized with focus. This member is equivalent to the Visual Basic constant |
NormalNoFocus | 4 | Window is restored to its most recent size and position. The currently active window remains active. This member is equivalent to the Visual Basic constant |
MinimizedNoFocus | 6 | Window is displayed as an icon. The currently active window remains active. This member is equivalent to the Visual Basic constant |
Remarks
When you issue Shell
commands, you can use the following enumeration members in your code in place of the actual values.
The Style
argument takes the AppWinStyle
enumeration members.