Desktop Functions: Smart Device Functions:
|
Search Results for "ShowWindowCommand" in [All]user32
MyWrapper.ShowWindow(targetHWnd, 6); //Minimize (ShowWindowCommands.Minimize)
MyWrapper.ShowWindow(targetHWnd, 9); //Restore (ShowWindowCommands.Restore) 2: ShowWindow
Public Shared Function ShowWindow(hWnd As IntPtr, <MarshalAs(UnmanagedType.I4)>nCmdShow As ShowWindowCommands) As <MarshalAs(UnmanagedType.Bool)> Boolean
Public Function ShowWindowAsync(hWnd As IntPtr, <MarshalAs(UnmanagedType.I4)>nCmdShow As ShowWindowCommands) As <MarshalAs(UnmanagedType.Bool)> Boolean Enums
enum ShowWindowCommands
/// is similar to <see cref="Win32.ShowWindowCommand.Normal"/>, except
/// <see cref="Win32.ShowWindowCommand.ShowMinimized"/>, except the
/// similar to <see cref="Win32.ShowWindowCommand.Show"/>, except the
Enum ShowWindowCommands As Integer
''' is similar to <see cref="Win32.ShowWindowCommands.Normal"/>, except
''' <see cref="Win32.ShowWindowCommands.ShowMinimized"/>, except the
''' similar to <see cref="Win32.ShowWindowCommands.Show"/>, except the
enum ShowWindowCommands
/// is similar to <see cref="Win32.ShowWindowCommand.Normal"/>, except
/// <see cref="Win32.ShowWindowCommand.ShowMinimized"/>, except the
/// similar to <see cref="Win32.ShowWindowCommand.Show"/>, except the
Enum ShowWindowCommands As Integer
''' is similar to <see cref="Win32.ShowWindowCommands.Normal"/>, except
''' <see cref="Win32.ShowWindowCommands.ShowMinimized"/>, except the
''' similar to <see cref="Win32.ShowWindowCommands.Show"/>, except the
public enum ShowWindowCommands : uint {
/// Displays a window in its most recent size and position. This value is similar to <see cref="ShowWindowCommands.SW_SHOWNORMAL"/>, except the window is not activated.
/// Displays the window as a minimized window. This value is similar to <see cref="ShowWindowCommands.SW_SHOWMINIMIZED"/>, except the window is not activated.
/// Displays the window in its current size and position. This value is similar to <see cref="ShowWindowCommands.SW_SHOW"/>, except the window is not activated.
Public Enum ShowWindowCommands coredll7: ShowWindow nCmdShow is an integer type parameter specifying how the window is to be shown. See ShowWindowCommand
static extern TODO ShowWindowCommand(TODO);
Declare Function ShowWindowCommand Lib "coredll.dll" (TODO) As TODO Structures
public ShowWindowCommands ShowCmd;
Public showCmd As ShowWindowCommand kernel3210: GetConsoleWindow
Private Function ShowWindow(ByVal hwnd As IntPtr, ByVal nCmdShow As ShowWindowCommands) As Boolean
Enum ShowWindowCommands As Integer
ShowWindow(hwnd, ShowWindowCommands.ShowMinimized) |