Technical data

Table Of Contents
332 Agilent Infiniium 9000 Series Oscilloscopes Programmer's Reference
17 Function Commands
:FUNCtion<F>:DISPlay
Command :FUNCtion<F>:DISPlay {{ON|1} | {OFF|0}}
The :FUNCtion<F>:DISPlay command either displays the selected function
or removes it from the display.
<F> An integer, 1-16, representing the selected function.
Example This example turns function 1 on.
myScope.WriteString ":FUNCTION1:DISPLAY ON"
Query :FUNCtion<F>:DISPlay?
The :FUNCtion<F>:DISPlay? query returns the displayed status of the
specified function.
Returned Format
[:FUNCtion<F>:DISPlay] {1|0}<NL>
Example This example places the current state of function 1 in the variable,
strSetting, then prints the contents of the variable to the computer's
screen.
myScope.WriteString ":SYSTEM:HEADER OFF"
myScope.WriteString ":FUNCTION1:DISPLAY?"
strSetting = myScope.ReadString
Debug.Print strSetting