[docs]classWindowCls:"""Window commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("window",core,parent)
[docs]defset(self,window_name:str)->None:"""SCPI: LAYout:REMove[:WINDow] \n Snippet: driver.applications.k91Wlan.layout.remove.window.set(window_name = 'abc') \n Removes a window from the display in the active channel. \n :param window_name: String containing the name of the window. In the default state, the name of the window is its index. """param=Conversions.value_to_quoted_str(window_name)self._core.io.write_with_opc(f'LAYout:REMove:WINDow {param}')
[docs]defget(self)->str:"""SCPI: LAYout:REMove[:WINDow] \n Snippet: value: str = driver.applications.k91Wlan.layout.remove.window.get() \n Removes a window from the display in the active channel. \n :return: window_name: String containing the name of the window. In the default state, the name of the window is its index."""response=self._core.io.query_str_with_opc(f'LAYout:REMove:WINDow?')returntrim_str_response(response)