ReadArrayOfReal32
Reads an array with elements of type float from an ADS device.
object.ReadArrayOfReal32(
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 REAL.
Samples
VBScript:
Dim VarArrayReal32
VarArrayReal32 = TcClientSync.ReadArrayOfReal32(&H4020, 0,2)
WScript.echo "VarArrayReal32(0) = ",VarArrayReal32(0)
WScript.echo "VarArrayReal32(1) = ",VarArrayReal32(1)
JScript:
var VarArrayReal32;
VarArrayReal32 = TcClientSync.ReadArrayOfReal32(0x4020, 0,2);
WScript.echo("VarArrayReal32[0] = ",VarArrayReal32[0]);
WScript.echo("VarArrayReal32[1] = ",VarArrayReal32[1]);