Write/Read |
|
Description |
Set and read the source phase domain’s ON/OFF state in the multi-dimensional sweep. |
VB Syntax |
md.SourcePortPhaseState(port) = value |
Variable |
(Type) - Description |
md |
A MultiDimensionalSweep (object) which belongs to a SA channel. |
port |
(long) Source port number for which to set the source phase state. |
value |
Boolean) Choose from: 0 - OFF -Disable the specified source phase domain in multi-dimensional sweep. 1 - ON - Enable the specified source phase domain in multi-dimensional sweep. |
Return Type |
Boolean |
Default |
0 |
Examples |
md.SourcePortPhaseState(0) = OFF 'Write |
value = md.SourcePortPhaseState(1) 'Read |
|
C++ Syntax |
HRESULT put_SourcePortPhaseState(long port, VARIANT_BOOL value); HRESULT get_SourcePortPhaseState(long port, VARIANT_BOOL* value); |
Interface |
IMultiDimensionalSweep |