|
|
|
|
|
SysIconize (Function) In french: SysIconisé Used to find out whether a window is minimized. This window was not created by WINDEV. Note: To determine if a WINDEV window is minimized, use WinSize.
ResHandle = SysWinHandle("Microsoft Word - Sales.DOC")
WindowMinimized = SysIconize(ResHandle)
Syntax
<Result> = SysIconize(<Window handle>)
<Result>: Boolean - True if the specified window is minimized,
- False otherwise.
<Window handle>: Integer Handle of the window to test. This handle is returned by SysWinHandle.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|