ReadArrayOfInt16
Liest ein Array mit Elementen vom Typ Integer aus einem ADS-Gerät.
object.ReadArrayOfInt16(
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 WORD, ARRAY OF INT oder ARRAY OF UINT.
Beispiele
VBScript:
Dim VarArrayInt16
VarArrayInt16 = TcClientSync.ReadArrayOfInt16(&H4020, 0,2)
WScript.echo "VarArrayInt16(0) = ",VarArrayInt16(0)
WScript.echo "VarArrayInt16(1) = ", VarArrayInt16(1)
JScript:
var VarArrayInt16;
VarArrayInt16 = TcClientSync.ReadArrayOfInt16(0x4020, 0, 2);
WScript.echo("VarArrayInt16[0] = ",VarArrayInt16[0]);
WScript.echo("VarArrayInt16[1] = ",VarArrayInt16[1]);