Description |
Sets and returns whether Port C or Port D is used for writing or reading data on the Handler IO connector. The Handler IO Port C is connected internally to the Port C of the Aux IO connector. Therefore, the Aux IO connector will have the same input/output mode. |
VB Syntax |
handler.PortMode (port) = value |
Variable |
(Type) - Description |
handler |
(object) - A Handler I/O object |
port |
(enum as NAMatHandlerPort) Port to be changed. Choose from: 2 -naPortC 3- naPortD |
value |
(enum as NaPortMode) - Choose from: 0 - naInput - set the port for reading 1 - naOutput - set the port for writing |
Return Type |
Long Integer |
Default |
1 - naInput |
Examples |
handler.PortMode(naPortC) = naInput 'Write value = handler.PortMode(naPortD) 'Read |
C++ Syntax |
HRESULT put_PortMode ( tagNAMatHandlerPort Port, tagNAPortMode Mode ); HRESULT get_PortMode ( tagNAMatHandlerPort Port, tagNAPortMode* Mode ); |
Interface |
IHWMaterialHandlerIO |