SCPI.SENSe(Ch).SWEep.TIME.AUTO

Object type

Property (Read-Write)

Syntax

SCPI.SENSe(Ch).SWEep.TIME.AUTO = Status

Status = SCPI.SENSe(Ch).SWEep.TIME.AUTO

Description

This command sets/gets whether to automatically set the sweep time of the selected channel ( Ch).

Variable

Parameter

Status

Description

ON/OFF of the auto setting of the sweep time

Data type

Boolean type (Boolean)

Range

Select from either of the following:

  • True or ON: Turns ON the auto setting.

  • False or OFF: Turns OFF the auto setting.

Preset value

True or ON

Examples

Dim SweAuto As Boolean
SCPI.SENSe(1).SWEep.TIME.AUTO = False
SweAuto = SCPI.SENSe(1).SWEep.TIME.AUTO

Related objects

SCPI.SENSe(Ch).SWEep.TIME.DATA

Equivalent key

Sweep Setup > Sweep Time Auto

Equivalent SCPI command

Syntax

:SENSe{[1]-4}:SWEep:TIME:AUTO {ON|OFF|1|0}

:SENSe{[1]-4}:SWEep:TIME:AUTO?

Query response

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

Example of use

10 OUTPUT 717;":SENS1:SWE:TIME:AUTO ON"
20 OUTPUT 717;":SENS1:SWE:TIME:AUTO?"
30 ENTER 717;A