Technical data

Measure Commands 24
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 611
:MEASure:TIEFilter:STOP
Command :MEASure:TIEFilter:STOP <stop_frequency>
The :MEASure:TIEFilter:STOP command sets the stopping frequency for the
TIE filter.
<stop_
frequency>
A real number.
Query
:MEASure:TIEFilter:STOP?
The :MEASure:TIEFilter:STOP? query returns the current value of the
stopping frequency of the TIE filter.
Returned Format [:MEASure:TIEFilter:STOP] <value><NL>
<value> The stop frequency for the TIE filter.
Example This example returns the current value of the stopping frequency for the
TIE filter then prints the contents of the variable to the computer's screen.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":MEASURE:TIEFILTER:START?"
varStop = myScope.ReadNumber
Debug.Print FormatNumber(varStop, 0)