Technical data

Table Of Contents
318 Agilent Infiniium 9000 Series Oscilloscopes Programmer's Reference
16 Display Commands
:DISPlay:TAB
Command :DISPlay:TAB <tab>
The :DISPlay:TAB command displays the corresponding tab indicated by
the <tab> parameter.
<tab> MEASurement | MARKer | LIMittest | JITTer | NOISe | HISTogram |
MASKtest | EYE | COLorgrade | NAVigation | STATus | SCALe
Example This example sets the Status tab as the displayed one.
myScope.WriteString ":DISPlay:TAB STATus"
Query :DISPlay:TAB?
The :DISPlay:TAB? query returns the tab that is currently displayed.
Returned Format
[:DISPlay:TAB] {MEAS | MARK | LIM | JITT | NOIS | HIST | MASK | EYE
| COL | NAV | STAT | SCAL}<NL>
Example This example places the currently displayed tab into the string variable,
strTab, then prints the contents of the variable to the computer's screen.
Dim strTab As String ' Dimension variable.
myScope.WriteString ":DISPlay:TAB?"
strTab = myScope.ReadString
Debug.Print strTab