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
Returns a combination of one or more options known by their associated values.
Example
// Describe the combination
ACombination is Combination
Option1 = 1
Option2 = 2
END
 
o is ACombination
 
// "Option1" is assigned to o
o = CombinationFromValue(ACombination, 1)
 
// the combination of "Option1" and "Option2" is assigned to o
o is ACombination = CombinationFromValue(ACombination, 3)
Syntax
<Result> = CombinationFromValue(<Combination> , <Value>)
<Result>: Combination variable
Combination variable containing the combination of options.
<Combination>: Combination variable
Name of the Combination variable to be used.
<Value>: Character string or Integer
  • If this parameter is a character string, the options are created by checking the presence of the values associated with each option in the string via a case-sensitive search operation.
  • If this parameter is an integer, the options are created by checking the presence of the bits corresponding to the values associated with each option via an option of And binary.
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