Technical data

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