Technical data

Table Of Contents
898 Agilent Infiniium 9000 Series Oscilloscopes Programmer's Reference
32 Time Base Commands
:TIMebase:VIEW
Command :TIMebase:VIEW {MAIN | WINDow}
The :TIMebase:VIEW command turns the horizontal zoom mode on and off.
This is the same as using the front panel [Zoom] key.
Example This example turns the horizontal zoom mode on.
myScope.WriteString ":TIMebase:VIEW WINDow"
Query :TIMebase:VIEW?
The :TIMebase:VIEW? query returns the horizontal zoom mode setting.
Returned Format
[:TIMebase:VIEW] {MAIN | WINDow}<NL>
Example This example places the current view in the string variable, strState, then
prints the contents of the variable to the computer's screen.
Dim strState As String ' Dimension variable.
myScope.WriteString ":TIMebase:VIEW?"
strState = myScope.ReadString
Debug.Print strState