Description |
Sets and reads the logic of the PassFail line on the HANDLER IO connector (pin 33). Learn more about Global Pass/Fail. Note: This line is connected to both the Handler IO and Aux IO in the VNA. Therefore, this command will affect both of these connectors in the same way. |
VB Syntax |
object.PassFailLogic = value |
Variable |
(Type) - Description |
object |
(object) - An Aux I/O or Handler I/O object |
value |
(enum as NARearPanelIOLogic) Choose from: 0 - naPositiveLogic - Causes the PassFail line to have positive logic (high = pass, low = fail). 1 - naNegativeLogic - Causes the PassFail line to have negative logic (high = fail, low = pass). |
Return Type |
Long Integer |
Default |
naPositiveLogic |
Examples |
aux.PassFailLogic = naNegativeLogic 'Write Text1.Text = aux.PassFailLogic 'Read |
C++ Syntax |
HRESULT put_PassFailLogic ( tagNARearPanelIOLogic Mode ); HRESULT get_PassFailLogic ( tagNARearPanelIOLogic* Mode ); |
Interface |
IHWAuxIO IHWMaterialHandlerIO |