Jump to content

WinLockWindow: Difference between revisions

From EDM2
No edit summary
No edit summary
Line 2: Line 2:


==Syntax==
==Syntax==
  WinLockWindow(hwndNext,FALSE);
  WinLockWindow(HWND hWnd,BOOL lock);


HWND hWnd,BOOL lock
===Parameters===
===Parameters===
; HWND 'hwndNext' (input)
; HWND 'hWnd' (input)
: Handle of the window
: Handle of the window


;BOOL (input)
;BOOL 'lock' (input)
: Indicator of action. It is allowed TRUE or FALSE.
: Indicator of action. It is allowed TRUE or FALSE.



Revision as of 17:26, 7 May 2023

This function is used to lock or unlock a window.

Syntax

WinLockWindow(HWND hWnd,BOOL lock);

HWND hWnd,BOOL lock

Parameters

HWND 'hWnd' (input)
Handle of the window
BOOL 'lock' (input)
Indicator of action. It is allowed TRUE or FALSE.

Returns

Returns the locked window handle (HWND).