ReadArrayOfInt32
Reads an array with elements of type long from an ADS device.
object.ReadArrayOfInt32(
nIndexGroup As Long,
nIndexOffset As Long,
nCount As Long
) As Variant
Parameters
nIndexGroup | Index group of the ADS variable. |
nIndexOffset | Index offset of the ADS variable |
nCount | Number of elements to be read. |
Return value
The array being read from the ADS device
Description
The read process is executed synchronously. In the IEC 61131-6 the array corresponds to the data type ARRAY OF DWORD, ARRAY OF DINT or ARRAY OF UDINT.
Samples
VBScript:
Dim VarArrayInt32
VarArrayInt32 = TcClientSync.ReadArrayOfInt32(&H4020, 0,2)
WScript.echo "VarArrayInt32(0) = ",VarArrayInt32(0)
WScript.echo "VarArrayInt32(1) = ", VarArrayInt32(1)
JScript:
var VarArrayInt32;
VarArrayInt32 = TcClientSync.ReadArrayOfInt32(0x4020, 0, 2);
WScript.echo("VarArrayInt32[0] = ",VarArrayInt32[0]);
WScript.echo("VarArrayInt32[1] = ",VarArrayInt32[1]);