Property (Read Only)
Value = SCPI.HCOPy.SDUMp.DATA.IMMediate
This command gets print screen image.
This command is available at the revision A.11.0x and above.
This command appears on the VBA editor with Auto_complete_Feature, however, this is not supported on VBA/COM.
Parameter |
Value |
Description |
Print screen |
Data Type |
Binary (Byte) |
Range |
- |
Preset Value |
- |
Unit |
- |
Resolution |
- |
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