Technical data

Marker Commands 22
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 391
:MARKer:Y2Position
Command :MARKer:Y2Position <By_position>
The :MARKer:Y2Position command sets the By marker position on the
specified source.
<By_position> A real number for the current measurement unit value at By (volts, amps,
or watts).
Example This example sets the By marker to- 100 mV.
myScope.WriteString ":MARKER:Y2POSITION -100E-3"
Query :MARKer:Y2Position?
The :MARKer:Y2Position? query returns the current measurement unit level
at the By marker position.
Returned Format
[:MARKer:Y2Position] <By_position><NL>
Example This example returns the current setting of the By marker to the numeric
variable, varValue, then prints the contents of the variable to the
computer's screen.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":MARKER:Y2POSITION?"
varValue = myScope.ReadNumber
Debug.Print FormatNumber(varValue, 0)