[docs]classLengthCls:"""Length commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("length",core,parent)
[docs]defset(self,arg_0:float)->None:"""SCPI: [SENSe]:TCAPture:LENGth \n Snippet: driver.applications.k70Vsa.sense.tcapture.length.set(arg_0 = 1.0) \n No command help available \n :param arg_0: No help available """param=Conversions.decimal_value_to_str(arg_0)self._core.io.write(f'SENSe:TCAPture:LENGth {param}')
[docs]defget(self)->float:"""SCPI: [SENSe]:TCAPture:LENGth \n Snippet: value: float = driver.applications.k70Vsa.sense.tcapture.length.get() \n No command help available \n :return: arg_0: No help available"""response=self._core.io.query_str(f'SENSe:TCAPture:LENGth?')returnConversions.str_to_float(response)