Technical data

Table Of Contents
Hardcopy Commands 18
Agilent Infiniium 9000 Series Oscilloscopes Programmer's Reference 371
:HARDcopy:IMAGe
Command :HARDcopy:IMAGe {NORMal | INVert}
The :HARDcopy:IMAGe command prints the image normally, inverted, or in
monochrome. IMAGe INVert is the same as choosing Invert Waveform
Colors in the Configure Printer dialog box.
Example This example sets the hard copy image output to normal.
myScope.WriteString ":HARDCOPY:IMAGE NORMAL"
Query :HARDcopy:IMAGe?
The :HARDcopy:IMAGe? query returns the current image setting.
Returned Format
[:HARDcopy:IMAGe] {NORMal | INVert}<NL>
Example This example places the current setting for the hard copy image 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 ":HARDCOPY:IMAGE?"
strSetting = myScope.ReadString
Debug.Print strSetting