Technical data
766 Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference
30 Time Base Commands
:TIMebase:WINDow:RANGe
Command :TIMebase:WINDow:RANGe <full_scale_range>
The :TIMebase:WINDow:RANGe command sets the full-scale range of the
delayed view. The range value is ten times the time per division of the
delayed view. The maximum range of the delayed view is the current main
range. The minimum delayed view range is 10 ps (1 ps/div).
<full_scale
_range>
A real number for the full- scale range of the time base window, in
seconds.
Example This example sets the full-scale range of the delayed view to 100 ns.
myScope.WriteString ":TIMEBASE:WINDOW:RANGE 100E-9"
Query :TIMebase:WINDow:RANGe?
The :TIMebase:WINDow:RANGe? query returns the current full- scale range
of the delayed view.
Returned Format
[:TIMebase:WINDow:RANGe] <full_scale_range><NL>
Example This example reads the current full- scale range of the delayed view into
the numeric variable, varValue, then prints the contents of the variable to
the computer's screen.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":TIMEBASE:WINDOW:RANGE?"
varValue = myScope.ReadNumber
Debug.Print FormatNumber(varValue, 0)