Technical data

278 Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference
15 Display Commands
:DISPlay:ROW
Command :DISPlay:ROW <row_number>
The :DISPlay:ROW command specifies the starting row on the screen for
subsequent :DISPlay:STRing and :DISPlay:LINE commands. The row
number remains constant until another :DISPlay:ROW command is
received, or the row is incremented by the :DISPlay:LINE command.
<row_number> An integer representing the starting row for subsequent :DISPlay:STRing
and :DISPlay:LINE commands. The range of values is 9 to 23.
Example This example sets the starting row for subsequent :DISPlay:STRing and
:DISPlay:LINE commands to 10.
myScope.WriteString ":DISPLAY:ROW 10"
Query :DISPlay:ROW?
The :DISPlay:ROW? query returns the current value of the row.
Returned Format
[:DISPlay:ROW] <row_number><NL>
Example This example places the current value for row in the string variable,
strSetting, then prints the contents of the variable to the computer's
screen.
Dim strSetting As String ' Dimension variable.
myScope.WriteString ":DISPLAY:ROW?"
strSetting = myScope.ReadString
Debug.Print strSetting