Write/Read
About IF Bandwidth

IFBandwidth Property


Description

Sets or returns the IF Bandwidth of the channel.

Sets or returns the IF Bandwidth of the segment.

Returns the IF Bandwidth used in the Cal Set

 VB Syntax

object.IFBandwidth = value

Variable

(Type) - Description

object

Channel (object)

or

Segment (object)

or

CalSet (object) - Read-only property

value

(double) - IF Bandwidth in Hz. The list of valid IF Bandwidths is different depending on the PNA model. (Click to see the lists.) If an invalid number is specified, the analyzer will round up to the closest valid number.

Return Type

Double

Default

Varies with PNA model.

Examples

chan.IFBandwidth = 3e3 'sets the IF Bandwidth of for the channel object to 3 kHz. -Write
seg.IFBandwidth = 5 'sets the IF Bandwidth of the segment to 5 Hz. -Write

ifbw = chan.IFBandwidth -Read

C++ Syntax

HRESULT get_IFBandwidth(double *pVal);

HRESULT put_IFBandwidth(double newVal);

Interface

IChannel
ISegment

|CalSet3