[docs]classAllCls:"""All commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("all",core,parent)
[docs]defset(self,filename:str)->None:"""SCPI: MMEMory:LOAD:DEModsetting:ALL \n Snippet: driver.applications.k14Xnr5G.massMemory.load.demodSetting.all.set(filename = 'abc') \n Restores the signal description of multiple carriers from a single file. \n :param filename: String containing the path and name of the file. The file extension is .ccallocation. """param=Conversions.value_to_quoted_str(filename)self._core.io.write(f'MMEMory:LOAD:DEModsetting:ALL {param}')
[docs]defget(self)->str:"""SCPI: MMEMory:LOAD:DEModsetting:ALL \n Snippet: value: str = driver.applications.k14Xnr5G.massMemory.load.demodSetting.all.get() \n Restores the signal description of multiple carriers from a single file. \n :return: filename: String containing the path and name of the file. The file extension is .ccallocation."""response=self._core.io.query_str(f'MMEMory:LOAD:DEModsetting:ALL?')returntrim_str_response(response)