Method (Write-only)
Parse(Scpi)
Return = Parse(Scpi?)
Executes an SCPI command of the E5071C.
The Parse object is a little slower in the execution speed than the COM object which has the same function as the SCPI command because it must parse the message string of the SCPI command.
Parameter |
Scpi |
Description |
SCPI command |
Data type |
Character string type (String) |
Parameter |
Return |
Description |
Response (query) of the SCPI command |
Data type |
Character string type (String) |
Dim Start As String
Parse(":SENS1:FREQ:STAR 100E6")
Start = Parse(":SENS1:FREQ:STAR?")
Dim TtlLbl As String
Parse(":DISP:WIND1:TITL:DATA ""filter""")
TtlLbl = Parse(":DISP:WIND1:TITL:DATA?")
Dim Fmt As String
Parse(":CALC1:PAR2:SEL")
Parse(":CALC1:FORM SMIT")
Fmt = Parse(":CALC1:FORM?")
Dim BckLght As String
Parse(":SYST:BACK OFF")
BckLght = Parse(":SYST:BACK?")
No equivalent key is available on the front panel.