Read-Only

PassFailStatus Property


Description

Returns the most recent pass/fail status value. Use this command as follows:

  1. Set the PNA trigger scope to GLOBAL

  2. Set the PNA trigger source to MANUAL or EXTERNAL.

  3. Configure and enable Limit Testing

  4. Trigger the PNA.

  5. Use the *OPC? (with SCPIStringParser object) to determine when the sweep is complete.

  6. Use the PassFailStatus property to obtain the global pass/fail result.

Learn more about Global Pass/Fail.

 VB Syntax

var = object.PassFailStatus

Variable

(Type) - Description

var

(enum as NAPassFailStatus) Variable to store returned status. One of the following will be returned:

0 - naStatusFail - all measurements not in HOLD mode have been swept, and one or more limit tests failed according to the specified Pass/Fail policy.

1 - naStatusPass - all measurements not in HOLD mode have been swept, and all associated limit tests have passed.

2 - naStatusNone - status cannot be determined because measurements are in progress.

object

(object) - An Aux I/O or Handler I/O object

Return Type

Long Integer

Default

Not Applicable

Examples

status = aux.PassFailStatus 'Read

C++ Syntax

HRESULT get_PassFailPolicy ( tagNAPassFailStatus* status);

Interface

IHWAuxIO4

IHWMaterialHandlerIO2