ReadArrayOfBool

Liest ein Array mit Elementen vom Typ Boolean aus einem ADS-Gerät.

object.ReadArrayOfBool(
  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 BOOL.

Beispiele

VBScript:

Dim VarArrayBool
VarArrayBool = TcClientSync.ReadArrayOfBool(&H4020, 0, 2)
WScript.echo "VarArrayBool(0) = ", VarArrayBool(0)
WScript.echo "VarArrayBool(1) = ", VarArrayBool(1)

JScript:

var VarArrayBool;
VarArrayBool = TcClientSync.ReadArrayOfBool(0x4020, 0, 2);
WScript.echo("VarArrayBool[0] = ",VarArrayBool[0]);
WScript.echo("VarArrayBool[1] = ", VarArrayBool[1]);