Technical data

Table Of Contents
Marker Commands 23
Agilent Infiniium 9000 Series Oscilloscopes Programmer's Reference 433
:MARKer:XDELta?
Query :MARKer:XDELta?
The :MARKer:XDELta? query returns the time difference between Ax and
Bx time markers.
Xdelta = time at Bx - time at Ax
Returned Format
[:MARKer:XDELta] <time><NL>
<time> Time difference between Ax and Bx time markers in seconds.
Example This example returns the current time between the Ax and Bx time
markers to the numeric variable, varTime, then prints the contents of the
variable to the computer's screen.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":MARKER:XDELTA?"
varTime = myScope.ReadNumber
Debug.Print FormatNumber(varTime, 0)