Technical data
Histogram Commands 18
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 341
:HISTogram:WINDow:SOURce
Command :HISTogram:WINDow:SOURce {CHANnel<N> |
FUNCtion<N> | WMEMory<N>}
The :HISTogram:WINDow:SOURce command selects the source of the
histogram window. The histogram window will track the source's vertical
and horizontal scale.
<N> An integer, 1 through 4.
Example This example sets the histogram window's source to Channel 1.
myScope.WriteString ":HISTOGRAM:WINDOW:SOURCE CHANNEL1"
Query :HISTogram:WINDow:SOURce?
The :HISTogram:WINDow:SOURce? query returns the currently selected
histogram window source.
Returned Format
[:HISTogram:WINDow:SOURce] {CHANnel<N> |
FUNCtion<N> | WMEMory<N>}<NL>
Example This example returns the result of the window source query and prints it
to the computer's screen.
Dim strWinsour As String
myScope.WriteString ":HISTOGRAM:WINDOW:SOURCE?"
strWinsour = myScope.ReadString
Debug.Print strWinsour