Technical data

384 Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference
22 Marker Commands
:MARKer:MODE
Command :MARKer:MODE {OFF | MANual | WAVeform | MEASurement | HISTogram | MTESt}
The :MARKer:MODE command sets the marker mode.
OFF Removes the marker information from the display.
MANual Enables manual placement of markers A and B.
WAVeform Tracks the current waveform.
MEASurement Tracks the most recent measurement.
HISTogram Tracks the the histogram window.
MEASurement Tracks the mask scale.
Example This example sets the marker mode to waveform.
myScope.WriteString ":MARKER:MODE WAVEFORM"
Query :MARKer:MODE?
The :MARKer:MODE? query returns the current marker mode.
Returned Format
[:MARKer:MODE] {OFF | MANual | WAVeform | MEASurement | HISTogram
| MTESt}<NL>
Example This example places the current marker mode in the string variable,
strSelection, then prints the contents of the variable to the computer's
screen.
Dim strSelection As String ' Dimension variable.
myScope.WriteString ":MARKER:MODE?"
strSelection = myScope.ReadString
Debug.Print strSelection