Technical data
296 Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference
16 Function Commands
:FUNCtion<N>:DISPlay
Command :FUNCtion<N>:DISPlay {{ON|1} | {OFF|0}}
The :FUNCtion<N>:DISPlay command either displays the selected function
or removes it from the display.
<N> An integer, 1 - 4, representing the selected function.
Example This example turns function 1 on.
myScope.WriteString ":FUNCTION1:DISPLAY ON"
Query :FUNCtion<N>:DISPlay?
The :FUNCtion<N>:DISPlay? query returns the displayed status of the
specified function.
Returned Format
[:FUNCtion<N>: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