HardCopy

SCPI Commands :

HCOPy:DATA
HCOPy:REGion
Commands in total: 17
Subgroups: 4
Direct child commands: 2
get_data() bytes[source]
# HCOPy:DATA
value: bytes = driver.hardCopy.get_data()

Transfers the hard copy data directly as a NByte stream to the remote client.

Returns:

data: block data

get_region() HardCopyRegion[source]
# HCOPy:REGion
value: enums.HardCopyRegion = driver.hardCopy.get_region()

Selects the area to be copied. You can create a snapshot of the screen or an active dialog.

Returns:

region: ALL | DIALog

set_region(region: HardCopyRegion) None[source]
# HCOPy:REGion
driver.hardCopy.set_region(region = enums.HardCopyRegion.ALL)

Selects the area to be copied. You can create a snapshot of the screen or an active dialog.

Parameters:

region – ALL | DIALog

Cloning the Group

# Create a copy of the original group, that exists independently
hardCopy_copy = driver.hardCopy.clone()

Subgroups