|
|
|
|
|
CombinationFromName (Function) In french: CombinaisonDepuisNom Returns a combination of one or more options known by their names. // Describe the combination ACombination is Combination Option1 Option2 END  o is ACombination  // "Option1" is assigned to o o = CombinationFromName(ACombination, "Option1")  // the combination of "Option1" and "Option2" is assigned to o o is ACombination = CombinationFromName(ACombination, "Option1 + Option2")
Syntax
<Result> = CombinationFromName(<Combination> , <Options> [, <Parameters>])
<Result>: Combination variable Combination variable containing the combination of options. <Combination>: Combination variable Name of the Combination variable to be used. <Options>: Character string Combination options that will be assigned to the Combination variable. If several options are used, they must be separated by the '+' operator. Example: "Option1 + Option2". <Parameters>: Optional integer Mode for managing the unknown options: | | combinationErrorUnknownOption | Using an unknnown option will trigger a WLanguage error. | combinationIgnoreUnknownOption | The unknown options will be ignored. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|