SCPI.SENSe(Ch).OFFSet.STATe

Type of object

Property (Read-Write)

Syntax

SCPI.SENSe(Ch).OFFSet.STATe = Status

Status = SCPI.SENSe(Ch).OFFSet.STATe

Description

This command turns ON/OFF or returns the status of the frequency offset, for the selected channel (Ch).

Variable

Parameter

Status

Description

On/off of the frequency offset

Data type

Boolean type (Boolean)

Range

Select from either of the following:

  • True or ON: Turns on the frequency offset.

  • False or OFF: Turns off the frequency offset.

Preset value

False or OFF

Example of use

Dim State As Boolean
SCPI.SENSe(1).OFFSet.STATe = False
State = SCPI.SENSe(1).OFFSet.STATe

Equivalent key

Sweep Setup > Frequency Offset > Frequency Offset

Equivalent SCPI command

Syntax

:SENSe{[1]-160}:OFFSet[:STATe] {ON|OFF|1|0}

:SENSe{[1]-160}:OFFSet[:STATe]?

Query response

{1|0}<newline><^END>

Example of use

10 OUTPUT 717;":SENS1:OFFS ON"
20 OUTPUT 717;":SENS1:OFFS?"
30 ENTER 717;A