Write/Read
About SA Application

ResolutionBWMode Property


Description

Set and read how the resolution bandwidth is set. When ON, resolution bandwidth is set based on Span/RBW ratio.

VB Syntax

sa.ResolutionBWMode = value

Variable

(Type) - Description

sa

A SpectrumAnalyzer (object)

value

(Enum as NAModes) Choose from:

1 - naMANUAL - Res. BW is set manually using ResolutionBW Property

0 - naAUTO - Res. BW is set automatically and will not set resolution bandwidth above 300 kHz.

Learn about these settings.

Return Type

Enum

Default

0 - naAUTO

Examples

sa.ResolutionBWMode = 1  'Write

value = sa.ResolutionBWMode 'Read

See an example program.

C++ Syntax

HRESULT put_ResolutionBWMode(tagNAModes mode);

HRESULT get_ResolutionBWMode(tagNAModes* mode);

Interface

ISpectrumAnalyzer