|
|
|
|
|
- Call function MemFound
- Checks
- Existence of memory area
MemFound (Function) In french: MemTrouve
Warning
From version 20, this feature is kept for backward compatibility. We recommend that you use Associative arrays.
Checks whether the sought element was found.
ResTrouvé = MemFound("ZoneMémoire")
Syntax
<Result> = MemFound(<Memory area>)
<Result>: Boolean - True if the element was found,
- False otherwise.
<Memory area>: Character string Name of the memory area, defined by MemCreate. Remarks MemFound cannot be used to perform a check several times in a row. For example, MemFound cannot be used as follows: MemSeek("ZoneJours", ValeurRecherchée)
WHILE MemFound("ZoneJours") = True
MemNext("ZoneJours")
END
Indeed, the searches performed in a memory area are exact-match searches. In this case, MemFound and MemOut have the same behavior. In our example, MemFound returns False (the end of the memory area is not reached). The following searches will not be performed. 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 MemFound is used. To check the existence of a memory area, use MemExist. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|