Keysight Pathwave 89600 VSA .NET API
SetCenterSpan Method
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > Frequency Class : SetCenterSpan Method


isZoom
Specifies zoom (true) or baseband (false).
center
Specifies the center frequency value, in Hertz.
span
Specifies the frequency span value, in Hertz.

Glossary Item Box

Set the measurement center frequency and span.

Syntax

Visual Basic (Declaration) 
Public MustOverride Sub SetCenterSpan( _
   ByVal isZoom As Boolean, _
   ByVal center As Double, _
   ByVal span As Double _
) 
C# 
public abstract void SetCenterSpan( 
   bool isZoom,
   double center,
   double span
)
C++/CLI 
public:
abstract void SetCenterSpan( 
   bool isZoom,
   double center,
   double span
) 

Parameters

isZoom
Specifies zoom (true) or baseband (false).
center
Specifies the center frequency value, in Hertz.
span
Specifies the frequency span value, in Hertz.

Remarks

This method sets the measurement's center frequency, span, and zoom all at one time with only a single measurement restart. That is faster than setting each property individually which would cause multiple measurement restarts.

Note that for multi-channel measurements, this method sets all channels to the same values.

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

See Also