Desktop Functions: Smart Device Functions:
|
Search Results for "ShowWindowCommand" in [All]user32
Win32.ShowWindow(hwnd, ShowWindowCommands.Normal ); 2: ShowWindow
Public Shared Function ShowWindowAsync(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 Structures
public ShowWindowCommands ShowCmd;
Public showCmd As ShowWindowCommand coredll5: ShowWindow nCmdShow is an integer type parameter specifying how the window is to be shown. See ShowWindowCommand 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
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 kernel32
Private Function ShowWindow(ByVal hwnd As IntPtr, ByVal nCmdShow As ShowWindowCommands) As Boolean
Enum ShowWindowCommands As Integer
ShowWindow(hwnd, ShowWindowCommands.ShowMinimized) |