Technical data
Time Base Commands 30
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 761
:TIMebase:REFerence
Command :TIMebase:REFerence {LEFT | CENTer | RIGHt}
The :TIMebase:REFerence command sets the delay reference to the left,
center, or right side of the display.
Example This example sets the delay reference to the center of the display.
myScope.WriteString ":TIMEBASE:REFERENCE CENTER"
Query :TIMebase:REFerence?
The :TIMebase:REFerence? query returns the current delay reference
position.
Returned Format
[:TIMebase:REFerence] {LEFT | CENTer | RIGHt}<NL>
Example This example places the current delay reference position in the string
variable, strSetting, then prints the contents of the variable to the
computer's screen.
Dim strSetting As String ' Dimension variable.
myScope.WriteString ":TIMEBASE:REFERENCE?"
strSetting = myScope.ReadString
Debug.Print strSetting