Chapter 10
223
Command Reference
E4981A SCPI Commands
10
. Comm
and
Refe
ren
ce
:HCOPy:SDUMp:DATA?
Syntax
:HCOPy:SDUMp:DATA?
Description
Outputs screen image display in GIF format. (Query Only)
Equivalent key
No equivalent key is available on the front panel.
Example of Use
Dim Nop As Long
Dim GifData(10000) As Byte
Dim paramsArray(2) As Long
Dim i As Integer
Nop = UBound(GifData) - LBound(GifData) + 1
paramsArray(0) = VarPtr(Nop)
paramsArray(1) = VarPtr(GifData(0))
Call viVPrintf(Agte4981a, ":HCOPY:SDUMP:DATA?" + vbLf, 0)
Call viVScanf(Agte4981a, "%#b", paramsArray(0))
Open "C:\TEST.gif" For Binary As #1
For i = 0 To Nop - 1
Put #1, , GifData(i)
Next i
Close
NOTE
Pressing [
Save/Recall
] - SAVE DISPLAY key saves the current screen image into the USB
memory.