Technical data

Histogram Commands 18
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 339
:HISTogram:SCALe:SIZE
Command :HISTogram:SCALe:SIZE <size>
The :HISTogram:SCALe:SIZE command sets histogram size for vertical and
horizontal mode.
<size> The size is from 1.0 to 8.0 for the horizontal mode and from 1.0 to 10.0
for the vertical mode.
Example This example sets the histogram size to 3.5.
myScope.WriteString ":HISTOGRAM:SCALE:SIZE 3.5"
Query :HISTogram:SCALe:SIZE?
The :HISTogram:SCALe:SIZE? query returns the correct size of the
histogram.
Returned Format
[:HISTogram:SCALe:SIZE] <size><NL>
Example This example returns the result of the size query and prints it to the
computer's screen.
Dim strSize As String
myScope.WriteString ":HISTOGRAM:SCALE:SIZE?"
strSize = myScope.ReadString
Debug.Print strSize