Write/Read
About Auxiliary Triggering

HandshakeEnable Property


Description

Turns handshake ON / OFF.

To enable handshake, the main trigger enable must ALSO be set using Enable.

When ON, PNA acquisition waits indefinitely for the input line to be asserted before continuing with the acquisition.

Note: Use on PNA-X ONLY. Other models do NOT have an Aux Input.

 VB Syntax

auxTrig.HandshakeEnable = state

Variable

(Type) - Description

auxTrig

An AuxTrigger (object)

state

(boolean) -

True - Handshake enabled

False - Handshake NOT enabled

Return Type

Boolean

Default

False

Exaamples

auxTrig.HandshakeEnable = True 'Write

value = auxTrig.HandshakeEnable 'Read

C++ Syntax

HRESULT get_HandshakeEnable(VARIANT_BOOL * enable);
HRESULT put_HandshakeEnable(VARIANT_BOOL enable);

Interface

IAuxTrigger