Property (Read-Write)
SCPI.PROGram.VARiable.STRing(Vnum).DATA = Value
Value = SCPI.PROGram.VARiable.STRing(Vnum).DATA
This command can be used to exchange String type data between an external PC and E5071C built-in VBA using GPIB/LAN/USB.
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 |
"" |
Dim StrVal As String
StrVal = "TestS11"
SCPI.PROGram.VARiable.STRing(1).DATA = StrVal
StrVal= SCPI.PROGram.VARiable.String(1).DATA
SCPI.PROGram.VARiable.ARRay(Vnum).DATA
SCPI.PROGram.VARiable.ARRay(Vnum).SIZE
SCPI.PROGram.VARiable.DOUBle(Vnum).DATA
SCPI.PROGram.VARiable.LONG(Vnum).DATA
None
:PROGram:VARiable:STRing{[1] - 10}:DATA <Character value, String Type>
:PROGram:VARiable:STRing{[1] - 10}:DATA ?
10 OUTPUT 717;" PROG:VAR:STR ""TEST DATA"""
20 OUTPUT 717;" PROG:VAR:STR?"
30 ENTER 717;A$