ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / System functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
SysIconize (Function)
In french: SysIconisé
Used to find out whether a window is minimized. This window was not created by WINDEV.
Remark: To find out whether a WINDEV window is minimized, use WinSize.
Example
// Find out whether "Microsoft Word - Sales.DOC" is minimized
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.
Component: wd290std.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Example in open window
nResHandle is 8-bytes int = SysWinHandle("Tarifador")
bWindowMinimized is boolean = SysIconize(nResHandle)
BOLLER
31 Jan. 2019

Last update: 05/26/2022

Send a report | Local help