Technical data

Measure Commands 24
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 609
:MEASure:TIEFilter:STARt
Command :MEASure:TIEFilter:STARt <start_frequency>
The :MEASure:TIEFilter:STARt command sets the starting frequency for
the TIE filter.
<start_
frequency>
A real number.
Query
:MEASure:TIEFilter:STARt?
The :MEASure:TIEFilter:STARt? query returns the current value of the
starting frequency of the TIE filter.
Returned Format
[:MEASure:TIEFilter:STARt] <value><NL>
<value> The start frequency for the TIE filter.
Example This example returns the current value of the starting 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?"
varStart = myScope.ReadNumber
Debug.Print FormatNumber(varStart, 0)