Technical data

Table Of Contents
Measure Commands 25
Agilent Infiniium 9000 Series Oscilloscopes Programmer's Reference 617
<result_state> If SENDvalid is ON, the result state is returned with the measurement
result. See the :MEASure:RESults table in this chapter for a list of the
result states.
Example This example places the current value of preshoot in the numeric variable,
varPreshoot, then prints the contents of the variable to the computer's
screen.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":MEASURE:PRESHOOT? CHANNEL1"
varPreshoot = myScope.ReadNumber
Debug.Print FormatNumber(varPreshoot, 0)