|
|
|
|
|
EnumerationCheckValue (Function) In french: EnumérationVérifieValeur Checks whether an enumeration value known by its associated value is valid. // Describe the enumeration AnEnumeration is Enumeration Value1 = "A" Value2 = "B" END  // Returns True EnumerationCheckValue(AnEnumeration, "A")  // Returns True EnumerationCheckValue(AnEnumeration, "B")  // Returns False EnumerationCheckValue(AnEnumeration, "C")
Syntax
<Result> = EnumerationCheckValue(<Enumeration> , <Value>)
<Result>: Boolean - True if an enumeration value known by its associated value is valid,
- False otherwise.
<Enumeration>: Enumeration variable Name of the Enumeration variable to be used. <Value>: Variant Simple value (string, integer, real, boolean, ...) associated with the enumeration value to check.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|