VeriStand .NET API Reference

Content Type
Programming Language
Current manual

BooleanValue.SetBytes Method

Sets the BooleanValue to true (True in Visual Basic) or false (False in Visual Basic) based on Bytes.

Namespace: NationalInstruments.VeriStand.Data
Assembly: NationalInstruments.VeriStand.DataTypes (in NationalInstruments.VeriStand.DataTypes.dll) Version: 2013.0.0.0 (2013.0.0.0)

Syntax

Visual Basic (Declaration)
Public Overrides Sub SetBytes ( _
	Bytes As Byte() _
)
C#
public override void SetBytes(
	byte[] Bytes
)
Visual C++
public:
virtual void SetBytes(
	array<unsigned char>^ Bytes
) override

Parameters

Bytes
Type: System.Byte
An array of bytes.

Remarks

If the byte at Bytes[0] is a nonzero value, sets the Boolean value to true (True in Visual Basic); otherwise, false (False in Visual Basic).

See Also

Was this information helpful?