Method (Write-only)
ECHO V1,V2, ..... ,V10
ECHO SCPI object
Displays in the echo window. (No read)
This command is different from SCPI.DISPlay.ECHO.DATA.
Up to 10 data items can be displayed.
Data is displayed as the declared data type without a cast.
Parameter |
V1,V2, ..... ,V10 |
Description |
Data you want to display in the echo window. |
Data type |
Variant type (Variant) |
Dim Nop As Long
Dim i As Integer
Dim Fdata As Variant
Nop = SCPI.SENSe(1).SWEep.POINts
Fdata = SCPI.CALCulate(1).SELected.DATA.FDATa
ECHO "Test Results"
For i=1 to Nop
ECHO i, Fdata(2*i-2), Fdata(2*i-1)
Next i
ECHO SCPI.SYSTem.ERRor
No equivalent key is available on the front panel.