Function
EN
Version 2.10
@GetVarVPRList
System
Syntax
@GetVarVPRList(VAR1[;VAR2[;...[;VAR99]]]);
Description
Returns a VPRList for the variable(s) VAR1-VAR99 is returned.
IMPORTANT:
A VPRList is a list of handles to variables.
This means that if the content of a variable specified in a VPRList is changed, this changed content is used in a subsequent comparison with @CompareVPRList this changed content is used, not the content at the time the VPRList (e.g. by @GetVarVPRList).
Example: @GetVarVPRList(VAR1[;VAR2[;…[;VAR99]]]):
V11:="ABC";
V12:=123;
V21:="AB";
V22:=123;
VPRList1:=@GetVarVPRList(V11;V12);
VPRList2:=@GetVarVPRList(V21;V22);
Ret:=@CompareVPRList(VPRList1;VPRList2);
The variables V11,V12 (->VPRList1) und V21,V22 (->VPRList2) are each combined into a VPRList.
Note : This text was machine-translated and may contain inaccuracies.
