Write/Read |
About Diff I/Q App |
Description |
Sets and reads the ON/ OFF state of phase control. On the Source Configuration dialog under Phase, this is the Phase State setting. |
VB Syntax |
DIQ.PortPhaseState (port) = value |
Variable |
(Type) - Description |
DIQ |
A Differential I/Q (object) |
port |
(String) Source port name. Use SourcePortNames to read a list of valid source ports. |
value |
(Enum as NAPhaseControlMode) Choose from:
|
Return Type |
Enum |
Default |
naPhaseControlOff or 0 |
Examples |
diq.PortPhaseState = naPhaseControlOff 'Write |
value = diq.PortPhaseState 'Read |
|
C++ Syntax |
HRESULT get_PortPhaseStateBSTR port, (tagNAPhaseControlMode* PortPhaseState); HRESULT put_PortPhaseState(BSTR port, tagNAPhaseControlMode PortPhaseState); |
Interface |
IDifferentialIQ |