HardCopy

SCPI Commands :

HCOPy:DATA
HCOPy:REGion
class HardCopyCls[source]

HardCopy commands group definition. 17 total commands, 4 Subgroups, 2 group commands

get_data() bytes[source]
# SCPI: HCOPy:DATA
value: bytes = driver.hardCopy.get_data()

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

return

data: block data

get_region() RsSmbv.enums.HardCopyRegion[source]
# SCPI: 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.

return

region: ALL| DIALog

set_region(region: RsSmbv.enums.HardCopyRegion) None[source]
# SCPI: 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.

param region

ALL| DIALog

Cloning the Group

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

Subgroups