ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Combination and enumeration 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
Checks whether a combination of one of more options known by their names is valid.
Example
// Describe the combination
ACombination is Combination
Option1
Option2
END
 
// Returns True
CombinationCheckName(ACombination, "Option1")
 
// Returns True
CombinationCheckName(ACombination, "Option1+Option2")
 
// Returns False
CombinationCheckName(ACombination, "Option3")
Syntax
<Result> = CombinationCheckName(<Combination> , <Options>)
<Result>: Boolean
  • True if a combination of one of more options known by their names is valid,
  • False otherwise.
<Combination>: Combination variable
Name of the Combination variable to be used.
<Options>: Character string
Options of the Combination type to check. If several options are used, they must be separated by the '+' operator. Example: "Option1 + Option2".
Component: wd290vm.dll
Minimum version required
  • Version 19
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help