SCPI.SENSe(Ch).CORRection.STATe

Object type

Property (Read-Write)

Syntax

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

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

Description

This turns ON/OFF the status of the error correction for the active trace of selected channel (Ch).

Variable

Parameter

Status

Description

ON/OFF of the error correction

Data type

Boolean type (Boolean)

Range

Select from either of the following:

  • True or ON: Turns ON the error correction.

  • False or OFF: Turns OFF the error correction.

Preset value

False or OFF

Examples

Dim Corr As Boolean
SCPI.SENSe(1).CORRection.STATe = True
Corr = SCPI.SENSe(1).CORRection.STATe

Equivalent key

Cal > Correction > ON|OFF

Equivalent SCPI command

Syntax

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

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

Query response

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

Example of use

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