Write/Read |
About SA Application |
Description |
Set and read the source stop power level. This command applies to Power or LFPower sweep types. |
VB Syntax |
sa.SourceStopPower (source) = value |
Variable |
(Type) - Description |
sa |
A SpectrumAnalyzer (object) |
source |
(String) Source name enclosed in quotes. Use SourcePortNames to read a list of available source port names. See also Remotely Specifying a Source Port. |
value |
(Double) Stop power level in dBm. Choose a value within the power range of the source. |
Return Type |
Double |
Default |
Default of the source. |
Examples |
sa.SourceStopPower("Port 1") = 10 'Write |
value = sa.SourceStopPower("Port 1") 'Read |
|
C++ Syntax |
HRESULT put_SourceStopPower(BSTR sourcename, double power); HRESULT get_SourceStopPower(BSTR sourcename, double* power); |
Interface |
ISpectrumAnalyzer |