|
|
|
|
|
CheckAllFalse (Function) In french: VérifieTousFaux Returns True if all the elements of an array are False. arrProduct is array of Product // Return True if no product is out of stock IF CheckAllFalse(arrProduct, AProduct => AProduct.Stock = 0) THEN // Everything is OK ELSE // Alert END
Syntax
<Result> = CheckAllFalse(<Source> [, <Operation>])
<Result>: Boolean - True if all the elements of the specified array are set to False,
- False otherwise.
<Source>: Array Name of the Array variable to be checked. <Operation>: WLanguage procedure WLanguage procedure to run: - If this parameter is not specified, <Source> must correspond to an array of booleans.
- If this parameter is specified, the WLanguage procedure is called for each element of the array and must return a boolean.
This parameter can correspond to a local or global WLanguage procedure, an internal procedure or a lambda procedure. Remarks Sequence of functionsYou can use array functions in a sequence. The following functions can be used in a sequence: This sequence can be used as a source for a FOR ALL statement or it can end with one of the following functions: Example: gnMoyenne = gtabUser.Filtre(cbFiltre).Map(cbTransforme).Mean()
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|