User32IsZoomed(SafeHandle) Method
Determines whether a window is maximized.
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("User32.dll", SetLastError = true)]
public static bool IsZoomed(
SafeHandle hWnd
)
<DllImportAttribute("User32.dll", SetLastError := true>]
Public Shared Function IsZoomed (
hWnd As SafeHandle
) As Boolean
Dim hWnd As SafeHandle
Dim returnValue As Boolean
returnValue = User32.IsZoomed(hWnd)
public:
[DllImportAttribute(L"User32.dll", SetLastError = true)]
static bool IsZoomed(
SafeHandle^ hWnd
)
[<DllImportAttribute("User32.dll", SetLastError = true)>]
static member IsZoomed :
hWnd : SafeHandle -> bool
No code example is currently available or this language may not be supported.
- hWnd SafeHandle
-
A handle to the window to be tested.
Boolean
If the the window is zoomed, the return value is
.
If the window is not zoomed, the return value is
.