ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Graphic string functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Checks whether an image was loaded in memory.
Reminder The LoadImage or LoadImageSheet functions are used to load images into memory. These images can be numbered from 1 to 9. gImageExists is used to determine if image N has been successfully loaded in memory. Then, this image can be used by gImage.
Example
// Charge l'image 3 si elle n'a pas encore été chargée
IF NOT gImageExists(3) THEN
	LoadImage(3, "Logo.png")
END
LIB_TITRE = "Notre logo : " = gImage(3)
Syntax
<Result> = gImageExists(<Image identifier>)
<Result>: Boolean
  • True if the image was loaded in memory.
  • False otherwise.
<Image identifier>: Integer
Identifier of image sought in memory (included between 1 and 9). This identifier is returned by LoadImage or LoadImageSheet.
Component: wd300obj.dll
Minimum version required
  • Version 21
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help