State
SCPI Command :
HCOPy:PAGE:WINDow:CHANnel:STATe
- Commands in total: 1Subgroups: 0Direct child commands: 1
- class StateStruct[source]
Response structure. Fields:
1 Channel: str: String containing the name of the channel. For a list of available channel types use method
RsFsw.instrument.listPy.get().2 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]
# 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().- Returns:
structure: for return value, see the help for StateStruct structure arguments.
- set(channel: str, state: bool) None[source]
# 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().- Parameters:
channel – String containing the name of the channel. For a list of available channel types use method
RsFsw.instrument.listPy.get().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.