Property (Read only)
Value = SCPI.HCOPy.SDUMp.DATA.IMMediate
This command gets print screen image.
|
Parameter |
Value |
|
Description |
Print screen |
|
Data type |
Binary (Byte) |
|
Range |
- |
|
Preset value |
- |
|
Unit |
- |
|
Resolution |
- |
Dim TmpData() as Byte
Open "C:\Screen.PNG" For Binary As #1
TmpData() = SCPI.HCOPy.SDUMp.DATA.IMMediate
Put #1, , TmpData()
Close #1
No equivalent key is available on the front panel
:HCOPy:SDUMp:DATA[:IMMediate]?
{Binary}<newline><^END>
'*** Save the screen image to the file
Age507x.WriteString ":HCOP:SDUM:DATA:FORM PNG", True
Age507x.WriteString ":HCOP:SDUM:DATA?", True
PNGdata = Age507x.ReadIEEEBlock(BinaryType_UI1, False, True)
Open "C:\TEST.png" For Binary As #1
Put #1, , PNGdata()
Close