vFrom | (Variant) Index of the first variable (zero-based index) whose value will be located into 1-dimensional array. |
---|---|
vTo | (Variant) Index of the last variable (zero-based index) whose value will be located into 1-dimensional array. The value -1 means the last variable of the object. |
Variables values indexed by the vFrom and vTo (including) will be selected into 1-dimensional array.
Values from so created 1-dimensional array can be assigned to variables on the "Data" tab by calling the SetVarArray and SetVarSubArray methods.
The GetVarArray method serves for getting 1-dimensional array of all variables values on the "Data" tab.
var oData = pMe.Pm("/Data");
var arr = oData.GetVarSubArray(0, 2);