|
|
|
|
|
EnumerationCheckValue (Function) In french: EnumérationVérifieValeur Checks whether an enumeration value known by its associated value is valid.
AnEnumeration is Enumeration
Value1 = "A"
Value2 = "B"
END
EnumerationCheckValue(AnEnumeration, "A")
EnumerationCheckValue(AnEnumeration, "B")
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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|