SCPI.SENSe(Ch).DC.PARameter

Object Type

Property (Read-Write)

Syntax

SCPI.SENSe(Ch).DC.PARameter = Param

Param = SCPI.SENSe(Ch).DC.PARameter

Description

This command sets/gets the port of DC monitor measurement, for the selected channel ( Ch).

Variable

Parameter

Param

Description

Port of DC monitor measurement

Data Type

Character string type (String)

Range

Select from either of the following:

  • "DCV": Sets the DC measurement port to DC output port (V).

  • "DCI": Sets the DC measurement port to DC output port (A).

  • "R": Sets the DC measurement port to R-port.

  • "T": Sets the DC measurement port to T-port.

Preset Value

"DCV"

Examples

Dim DCPar as String
SCPI.SENSe(1).DC.PARameter = "DCI"
DCPar = SCPI.SENSe(1).DC.PARameter

Related Objects

SCPI.SENSe(Ch).DC.MEASure.DATA

SCPI.SENSe(Ch).DC.MEASure.ENABle

Equivalent Key

Meas > DC Monitor Setup > Function > Vdc Bias|Idc Bias|Vdc R|Vdc T

Equivalent SCPI Command

Syntax

:SENSe{[1]-4}:DC:PARameter {DCV|DCI|R|T}

:SENSe{[1]-4}:DC:PARameter?

Query Response

{DCV|DCI|R|T} <newline><^END>

Example of use

10 OUTPUT 717;":SENS1:DC:PAR DCI"
20 OUTPUT 717;":SENS1:DC:PAR?"
30 ENTER 717;A$