ReadArrayOfBool

Reads an array with elements of type boolean from an ADS device.

object.ReadArrayOfBool(
  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  represents the data type ARRAY OF BOOL..

Samples

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]);