[docs]classStateCls:"""State commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("state",core,parent)
[docs]defget(self)->bool:"""SCPI: [SENSe]:SUBSpan:STATe \n Snippet: value: bool = driver.applications.k17Mcgd.sense.subspan.state.get() \n Queries the state of the frequency subspan measurements. This can be helpful when using subspan mode 'Auto' where the FSW-K17S decides automatically if subspan measurements are active (query state 'ON') or inactive (query state 'OFF') . \n :return: state: ON | OFF"""response=self._core.io.query_str(f'SENSe:SUBSpan:STATe?')returnConversions.str_to_bool(response)