SCPI.HCOPy.SDUMp.DATA.IMMediate

Object Type

Property (Read Only)

Syntax

Value = SCPI.HCOPy.SDUMp.DATA.IMMediate

Description

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.

Variable

Parameter

Value

Description

Print screen

Data Type

Binary (Byte)

Range

-

Preset Value

-

Unit

-

Resolution

-

Related Objects

SCPI.HCOPy.SDUMp.DATA.FORMat

Equivalent Key

No equivalent key is available on the front panel.

Equivalent SCPI Command

Syntax

:HCOPy:SDUMp:DATA[:IMMediate]?

Query Response

{Binary}<newline><^END>

Example of use (VISA-COM)

 

    '*** 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