Write/Read
About SA Application

BandwidthShape Property


Description

Set and read the resolution bandwidth shape.

VB Syntax

sa.BandwidthShape = value

Variable

(Type) - Description

sa

A SpectrumAnalyzer (object)

value

(Enum as NASABandwidthShape) Choose from:

0 - naNoWindow

1 - naWindowFlatTop

2 - naWindowGaussian

3 - naWindowBlackman

4 - naWindowKaiser

Learn about these choices.

Return Type

Enum

Default

2 - naWindowGaussian

Examples

sa.BandwidthShape = naWindowFlatTop   'Write

value = sa.BandwidthShape 'Read

See an example program.

C++ Syntax

HRESULT put_BandwidthShape(tagNASABandwidthShape shape);

HRESULT get_BandwidthShape(tagNASABandwidthShape* shape);

Interface

ISpectrumAnalyzer