SCPI.DISPlay.WINDow(Ch).X.SPACing

Object type

Property (Read-Write)

Syntax

SCPI.DISPlay.WINDow(Ch).X.SPACing = Param

Param = SCPI.DISPlay.WINDow(Ch).X.SPACing

Description

This command selects the display type of the graph horizontal axis of the selected channel (Ch) for segment sweep.

Variable

Parameter

Param

Description

Horizontal axis display type of the graph for segment sweep

Data type

Character string type (String)

Range

Select from the following:

  • "LINear": Specifies the frequency base (linear frequency axis with the minimum frequency at the left edge and the maximum frequency at the right edge).

  • "OBASe" : Specifies the order base (axis in which the measurement point numbers are positioned evenly in the order of measurement).

Preset value

"OBASe"

Examples

Dim DispSegm As String
SCPI.SENSe(1).SWEep.TYPE = "segm"
SCPI.DISPlay.WINDow(1).X.SPACing = "obas"
DispSegm = SCPI.DISPlay.WINDow(1).X.SPACing

Related objects

SCPI.SENSe(Ch).SWEep.TYPE

Equivalent key

Sweep Setup > Segment Display > Freq Base|Order Base

Equivalent SCPI command

Syntax

:DISPlay:WINDow{[1]-4}:X:SPACing {LINear|OBASe}

:DISPlay:WINDow{[1]-4}:X:SPACing?

Query response

{LIN|OBAS}<newline><^END>

Example of use

10 OUTPUT 717;":DISP:WIND1:X:SPAC OBAS"
20 OUTPUT 717;":DISP:WIND1:X:SPAC?"
30 ENTER 717;A$