SetVarSubArray - method of the PmaData object
Description:
Assignment of values from the values array created by methods
GetVarArray or
GetVarSubArray to the
selected variables on the "
Data" tab of this object.
Syntax:
Boolean SetVarSubArray(Variant vFrom, Variant vTo, Array array)
Parameters:
vFrom | (Variant) Index (or name) of the first variable (zero-based index) to which the first value of the array has to be assigned. |
vTo | (Variant) Index (or name) of the last variable (zero-based index) to which the last value of the array has to be assigned. |
array | (Array) 1-dimensional array (PmArray object for JavaScript or Array data type for VBScript) whose values have to be assigned to the selected variables. |
---|
Return value:
true - on successful assignment of values
false - Otherwise
Note:
Values will be assigned to variables with the index in the range of the
vFrom and
vTo (including) parameters.
The
SetVarArray method serves to the assignment of values from the array to
all variables.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var arr = Pm.Array1(23, 45, 56);
oData.SetVarSubArray(1, 3, arr);
// or
var bDone = oData.SetVarSubArray(1, 3, arr);
// bDone = true or false
Dim arr
arr = Pm.Array1(23, 45, 56)
oData.SetVarSubArray 1, 3, arr
' or
Dim bDone
bDone = oData.SetVarSubArray(1, 3, arr)
' bDone = true or false