[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,source_window:str,target_window:str,direction:enums.WindowDirReplace)->None:"""SCPI: LAYout:MOVE[:WINDow] \n Snippet: driver.applications.k18AmplifierEt.layout.move.window.set(source_window = 'abc', target_window = 'abc', direction = enums.WindowDirReplace.ABOVe) \n No command help available \n :param source_window: String containing the name of an existing window that is to be moved. By default, the name of a window is the same as its index. To determine the name and index of all active windows in the active channel, use the method RsFsw.Layout.Catalog.Window.get_ query. :param target_window: String containing the name of an existing window that is to be moved. By default, the name of a window is the same as its index. To determine the name and index of all active windows in the active channel, use the method RsFsw.Layout.Catalog.Window.get_ query. :param direction: LEFT | RIGHt | ABOVe | BELow | REPLace Destination the selected window is moved to, relative to the reference window. """param=ArgSingleList().compose_cmd_string(ArgSingle('source_window',source_window,DataType.String),ArgSingle('target_window',target_window,DataType.String),ArgSingle('direction',direction,DataType.Enum,enums.WindowDirReplace))self._core.io.write_with_opc(f'LAYout:MOVE:WINDow {param}'.rstrip())