ReadArrayOfInt32
Liest ein Array mit Elementen vom Typ Long aus einem ADS-Gerät.
object.ReadArrayOfInt32(
nIndexGroup As Long,
nIndexOffset As Long,
nCount As Long
) As Variant
Parameter
nIndexGroup | Index-Gruppe der ADS-Variable. |
nIndexOffset | Index-Offset der ADS-Variable. |
nCount | Anzahl der Elemente, die gelesen werden sollen. |
Rückgabewert
Array, mit den Werten aus dem ADS-Gerät.
Beschreibung
Der Lesevorgang wird synchron durchgeführt. In der IEC 61131-6 entspricht dieses dem Datentyp ARRAY OF DWORD, ARRAY OF DINT oder ARRAY OF UDINT.
Beispiele
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]);