Technical data

Table Of Contents
Function Commands 17
Agilent Infiniium 9000 Series Oscilloscopes Programmer's Reference 345
:FUNCtion<F>:HORizontal:POSition
Command :FUNCtion<F>:HORizontal:POSition <position_value>
The :FUNCtion<F>:HORizontal:POSition command sets the time value at
center screen for the selected function. If the oscilloscope is not already in
manual mode when you execute this command, it puts the oscilloscope in
manual mode.
When you select :FUNCtion<F>:FFTMagnitude, the horizontal position is
equivalent to the center frequency. This also automatically selects manual
mode.
<F> An integer, 1-16, representing the selected function.
<position
_value>
A real number for the position value in time, in seconds, from - 10E15 to
10E15.
Query
:FUNCtion<F>:HORizontal:POSition?
The :FUNCtion<F>:HORizontal:POSition? query returns the current time
value at center screen of the selected function.
Returned Format
[:FUNCtion<F>:HORizontal:POSition] <position><NL>
Example This example places the current horizontal position setting for 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:HORIZONTAL:POSITION?"
varValue = myScope.ReadNumber
Debug.Print FormatNumber(varValue, 0)