SCPI.SENSe(Ch).SEGMent.FMODe

Object Type

Property (Read-Write)

Syntax

SCPI.SENSe(Ch).SEGMent.FMODe = Param

Param = SCPI.SENSe(Ch).SEGMent.FMODe

Description

This command sets/gets the stimulus setting mode of stimulus range setting in segment table, for the selected channel ( Ch). This command is the same operation as the second parameter of SCPI.SENSe(Ch).SEGMent.DATA command.

Variable

Parameter

Param

Description

Stimulus setting mode in segment table

Data Type

Character string type (String)

Range

Select from either of the following:

  • "ENDS": Specified stimulus setting mode to "Start/Stop".

  • "SPAN": Specified stimulus setting mode to "Center/Span".

Preset Value

"ENDS"

Examples

Dim FreqMode as String
SCPI.SENSe(1).SEGMent.FMODe = "SPAN"
FreqMode = SCPI.SENSe(1).SEGMent.FMODe

Related Objects

SCPI.SENSe(Ch).SEGMent.DATA

Equivalent Key

Sweep Setup > Edit Segment Table > Freq Mode > Start/Stop|Center/Span

Equivalent SCPI Command

Syntax

:SENSe{[1]-4}:SEGMent:FMODe {ENDS|SPAN}

:SENSe{[1]-4}:SEGMent:FMODe?

Query Response

{ENDS|SPAN} <newline><^END>

Example of use

10 OUTPUT 717;":SENS1:SEGM:FMOD SPAN"
20  OUTPUT 717;":SENS1:SEGM:FMOD?"
30 ENTER 717;A$