Technical data

Histogram Commands 18
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 343
:HISTogram:WINDow:RLIMit
Command :HISTogram:WINDow:RLIMit <right_limit>
The :HISTogram:WINDow:RLIMit command moves the Bx marker (right
limit) of the histogram window. The histogram window determines the
portion of the display used to build the database used for the histogram.
The histogram window markers will track the scale of the histogram
window source.
<right_limit> A real number that represents the right boundary of the histogram
window.
Example This example sets the Bx marker to 200 microseconds.
myScope.WriteString ":HISTOGRAM:WINDOW:RLIMit 200E-6"
Query :HISTogram:WINDow:RLIMit?
The :HISTogram:WINDow:RLIMit? query returns the value of the right
histogram window marker.
Returned Format
[:HISTogram:WINDow:RLIMit] <right_limit><NL>
Example This example returns the result of the Bx position query and prints it to
the computer's screen.
Dim strRL As String
myScope.WriteString ":HISTOGRAM:WINDOW:RLIMit?"
strRL = myScope.ReadString
Debug.Print strRL