State

SCPI Command :

HCOPy:PAGE:WINDow:CHANnel:STATe
class StateCls[source]

State commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class StateStruct[source]

Response structure. Fields:

  • Channel: str: String containing the name of the channel. For a list of available channel types use [CMDLINKRESOLVED Instrument.ListPy#get_ CMDLINKRESOLVED].

  • State: bool: 1 | 0 | ON | OFF 1 | ON The channel windows are included in the printout. 0 | OFF The channel windows are not included in the printout.

get() StateStruct[source]
# SCPI: HCOPy:PAGE:WINDow:CHANnel:STATe
value: StateStruct = driver.hardCopy.page.window.channel.state.get()

This command selects all windows of the specified channel to be included in the printout for method RsFsw.HardCopy. Content.set.

return

structure: for return value, see the help for StateStruct structure arguments.

set(channel: str, state: bool) None[source]
# SCPI: HCOPy:PAGE:WINDow:CHANnel:STATe
driver.hardCopy.page.window.channel.state.set(channel = 'abc', state = False)

This command selects all windows of the specified channel to be included in the printout for method RsFsw.HardCopy. Content.set.

param channel

String containing the name of the channel. For a list of available channel types use method RsFsw.Instrument.ListPy.get_.

param state

1 | 0 | ON | OFF 1 | ON The channel windows are included in the printout. 0 | OFF The channel windows are not included in the printout.