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 an enumeration value known by its associated value.
Example
// Describe the enumeration
AnEnumeration is Enumération
Value1 = "A"
Value2 = "B"
END
 
MyEnumeration is Enumération
 
// "Value1" is assigned to MyEnumeration
MyEnumeration = EnumerationFromValue(AnEnumeration, "A")
// The trace shows Value1 -> "A"
Trace(MyEnumeration..Name + " -> " + MyEnumeration..Value)
 
// "Value2" is assigned to MyEnumeration
MyEnumeration = EnumerationFromValue(AnEnumeration, "B")
// The trace shows Value2 -> "B"
Trace(MyEnumeration..Name + " -> " + MyEnumeration..Value)
Syntax
<Result> = EnumerationFromValue(<Enumeration> , <Value> [, <Default>])
<Result>: Enumeration variable
Enumeration variable.
<Enumeration>: Enumeration variable
Name of the Enumeration variable to be used.
<Value>: Variant
Simple value (string, integer, real, boolean, ...) of the enumeration.
<Default>: Optional variable
Default value that must be given to the enumeration if the <Value> is not found.
If this parameter is not specified and the <Value> is not found, a fatal error (exception) is generated.
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