SCPI.SENSe(Ch).SEGMent.SLOCal.STATe

Object Type

Property (Read-Write)

Syntax

SCPI.SENSe(Ch).SEGMent.SLOCal.STATe = Status

Status = SCPI.SENSe(Ch).SEGMent.SLOCal.STATe

Description

This command turns ON/OFF the individual Shift LO state control in the segment sweep table.

Variable

Parameter

Status

Description

ON/OFF of the individual Shift LO state control

Data Type

Boolean type (Boolean)

Range

Select from either of the following:

True or ON: Turns ON the individual Shift LO state control.

False or OFF: Turns OFF the individual Shift LO state control.

Preset Value

OFF or 0

Examples

Dim SegmData As Variant

SCPI.SENSe(1).SEGMent.DATA = Array(6,0,1,0,0,1,0,2, _

100E6,2E9,31,70E3,2,2E9,3E9,101,300E3,3)

SegmData = SCPI.SENSe(1).SEGMent.DATA

Dim SegmState As Boolean

SCPI.SENSe(1).SEGMent.SLOCal.STATe = True

SegmState= SCPI.SENSe(1).SEGMent.SLOCal.STATe

Related Objects

SCPI.SENSe(Ch).SEGMent.DATA

SCPI.SENSe(Ch).SEGMent.SLOCal.DATA

Equivalent Key

Sweep Setup > Edit Segment Table > List Shift LO > ON|OFF

Equivalent SCPI Command

Syntax

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

:SENSe{[1]-160}:SEGMent:SLOCal:STATe?

Query Response

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

Example of use

10 DIM H(1:2,1:5)

20 OUTPUT 717;":SENS1:SEGM:DATA 6,0,1,0,0,1,0,2,";

30 OUTPUT 717;"100E6,2E9,31,70e3,2,";

40 OUTPUT 717;"2E9,3E9,101,300e3,3"

50 OUTPUT 717;":SENS1:SEGM:DATA?"

60 ENTER 717;A,B,C,D,E,F,G,H(*)

10 OUTPUT 717;":SENS1:SEGMent:SLOCal:STATe ON"

20 OUTPUT 717;":SENS1:SEGMent:SLOCal:STATe?"

30 ENTER 717;A