Technical data
Function Commands 16
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 327
:FUNCtion<N>:VERTical:RANGe
Command :FUNCtion<N>:VERTical:RANGe <full_scale_range>
The :FUNCtion<N>:VERTical:RANGe command defines the full- scale vertical
axis of the selected function. This automatically changes the mode from
auto to manual, if the oscilloscope is not already in manual mode.
<N> An integer, 1 - 4, representing the selected function.
<full_scale
_range>
A real number for the full- scale vertical range, from - 100E15 to 100E15.
Query
:FUNCtion<N>:VERTical:RANGe?
The :FUNCtion<N>:VERTical:RANGe? query returns the current range
setting of the specified function.
Returned Format
[:FUNCtion<N>:VERTical:RANGe] <range><NL>
Example This example places the current vertical range setting of function 2 in the
numeric variable, varValue, then prints the contents to the computer's
screen.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":FUNCTION2:VERTICAL:RANGE?"
varValue = myScope.ReadNumber
Debug.Print FormatNumber(varValue, 0)