Technical data

Measure Commands 24
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 565
:MEASure:QUALifier<M>:STATe
Command :MEASure:QUALifier<M>:STATe {{ON | 1} | {OFF | 0}}
The :MEASure:QUALifier<M>:STATe command enables or disables level
qualifying for timing measurements.
<M> An integer, 1-3.
Example This example sets the level qualifier 2 state to ON.
myScope.WriteString ":MEASURE:QUALIFIER2:STATE ON"
Query :MEASure:QUALifier<M>:STATe?
The :MEASure:QUALifier<M>:STATe? query returns the state of the level
qualifier for timing measurements.
Returned Format
[:MEASure:QUALifier<M>:SOURce] {1 | 0}<NL>
Example This example places the current state of the level qualifier for timing
measurements in the state variable and displays it on the computer's
screen.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":MEASURE:QUALIFIER2:STATE?"
varstate = myScope.ReadNumber
Debug.Print FormatNumber(varstate, 0)