ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Memory area functions
  • Call function MemOut
  • Existence of memory area
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Warning
From version 20, this feature is kept for backward compatibility. We recommend that you use Associative arrays.
Used to find out whether the browse performed on a memory area is outside this memory area.
Example
MemFirst("MaZoneMémoire")
// Parcours en dehors de la zone mémoire "MaZoneMémoire" ?
WHILE MemOut("MaZoneMémoire") = False
	// Traitements dans la zone mémoire
	...
	// Fin des traitements
	MemNext("MaZoneMémoire")
END
Syntax
<Result> = MemOut(<Memory area>)
<Result>: Boolean
  • True if the end of the memory area was reached,
  • False otherwise.
<Memory area>: Character string
Name of the memory area, defined by MemCreate.
Remarks

Call function MemOut

MemOut must be used after the call to MemFirst, MemLast, MemNext, MemPrevious and MemSeek in order to check whether the end of the memory area was reached.

Existence of memory area

The existence of the memory area is not checked.
If the specified memory area does not exist, a WLanguage error occurs when MemOut is used.
To check the existence of a memory area, use MemExist.
Business / UI classification: Neutral code
Component: wd300std.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help