ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / How to proceed? / Programming
  • Declaration and use
  • Syntax
  • Example
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
An enumeration is a type of variabble containing a list of values. This type of variable is used, for example, to normalize the possible values of a parameter. Therefore, the developer will be able to initialize this parameter from the possible values imposed by the enumeration.
The variable associated with this enumeration can take a single list value.
For more details on enumerations, see Enumeration (Type of variable).
Declaration and use

Syntax

EnumerationName is Enumeration
Possible value 1
Possible value 2
...
END


VariableName is EnumerationName

VariableName = Possible value 1

Example

  • Declare the enumeration:
    // Global declarations of the XXX window
    PossibleAction is Enumération
    Creation
    Modification
    Deletion
    Printing
    END
    // Use the enumeration
    ActionParam is PossibleAction
     
    ActionParam = Creation
     
    Open(WIN_Customer, ActionParam)
  • In the "Global declarations" event of WIN_Customer:
    PROCÉDURE WIN_Customer(WorkingMode is PossibleAction)
The following functions can be used to handle enumerations:
Minimum version required
  • Version 18
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 01/06/2023

Send a report | Local help