Read-only |
About the Handler IO Connector |
Description |
Type 1 and Type2 configurations: Returns the last value written to the selected output pin. Type3 configuration: Returns the current state of the selected output pin. If an Input1 trigger occurs, the state may not be the same value as was written. All configurations: Data is written using put_Output Method. |
VB Syntax |
data = handlerIo.get_Output (pin) |
Variable |
(Type) - Description |
data |
(variant) - A variable to store the return value. The returned value will be one of the following: 0 - TTL Low 1 - TTL High |
handlerIo |
(object) - A HandlerIO object |
pin |
(enum as NAMatHandlerOutput) - output to read. Choose from: naOutput1 (0) Learn about User Output |
Return Type |
Variant |
Default |
Not Applicable |
Examples |
data = handlerIo.get_Output(naOutput1) |
C++ Syntax |
HRESULT get_Output ( tagNAMatHandlerOutput Output, VARIANT* Data ); |
Interface |
IHWMaterialHandlerIO |