|
|
|
|
|
CombinationFromValue (Function) In french: CombinaisonDepuisValeur Returns a combination of one or more options known by their associated values. // 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|