Write/Read
About SA Application

SourceStartPower Property

Description

Set and read the source start power level. This command applies to Power or LFPower sweep types.

VB Syntax

sa.SourceStartPower (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)  Start power level in dBm. Choose a value within the power range of the source.

Return Type

Double

Default

Default of the source.

Examples

sa.SourceStartPower("Port 1") = -5   'Write

value = sa.SourceStartPower("Port 1") 'Read

C++ Syntax

HRESULT put_SourceStartPower(BSTR sourcename, double power);

HRESULT get_SourceStartPower(BSTR sourcename, double* power);

Interface

ISpectrumAnalyzer