[docs]classSelectCls:"""Select commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("select",core,parent)
[docs]defset(self,theme:str)->None:"""SCPI: HCOPy:THEMe:SELect \n Snippet: driver.hardCopy.theme.select.set(theme = 'abc') \n No command help available \n :param theme: No help available """param=Conversions.value_to_quoted_str(theme)self._core.io.write(f'HCOPy:THEMe:SELect {param}')