SCPI.PROGram.VARiable.STRing(Vnum).DATA

Object type

Property (Read-Write)

Syntax

SCPI.PROGram.VARiable.STRing(Vnum).DATA = Value

Value = SCPI.PROGram.VARiable.STRing(Vnum).DATA

Description

This command can be used to exchange String type data between an external PC and E5071C built-in VBA using GPIB/LAN/USB.

Variable

Parameter

Vnum

Description

Variable Number

Range

1 to 10

Preset value

1

 

Parameter

Value

Description

The value of the character string type

Data type

Character string type (String)

Range

Compliant with the character string type

Preset value

""

Examples

Dim StrVal As String
StrVal = "TestS11"

SCPI.PROGram.VARiable.STRing(1).DATA = StrVal
StrVal= SCPI.PROGram.VARiable.String(1).DATA

Related objects

SCPI.PROGram.VARiable.ARRay(Vnum).DATA

SCPI.PROGram.VARiable.ARRay(Vnum).SIZE

SCPI.PROGram.VARiable.DOUBle(Vnum).DATA

SCPI.PROGram.VARiable.LONG(Vnum).DATA

Equivalent key

None

Equivalent SCPI command

Syntax

:PROGram:VARiable:STRing{[1] - 10}:DATA <Character value, String Type>

:PROGram:VARiable:STRing{[1] - 10}:DATA ?

Example of use

10 OUTPUT 717;" PROG:VAR:STR ""TEST DATA"""
20 OUTPUT 717;" PROG:VAR:STR?"
30 ENTER 717;A$