Source code for RsSmab.Implementations.Source.Bb.Vor.Setting

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class SettingCls: """Setting commands group definition. 3 total commands, 0 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("setting", core, parent)
[docs] def delete(self, filename: str) -> None: """SCPI: [SOURce<HW>]:BB:VOR:SETTing:DELete \n Snippet: driver.source.bb.vor.setting.delete(filename = 'abc') \n No command help available \n :param filename: No help available """ param = Conversions.value_to_quoted_str(filename) self._core.io.write(f'SOURce<HwInstance>:BB:VOR:SETTing:DELete {param}')
[docs] def load(self, filename: str) -> None: """SCPI: [SOURce<HW>]:BB:VOR:SETTing:LOAD \n Snippet: driver.source.bb.vor.setting.load(filename = 'abc') \n No command help available \n :param filename: No help available """ param = Conversions.value_to_quoted_str(filename) self._core.io.write(f'SOURce<HwInstance>:BB:VOR:SETTing:LOAD {param}')
[docs] def set_store(self, filename: str) -> None: """SCPI: [SOURce<HW>]:BB:VOR:SETTing:STORe \n Snippet: driver.source.bb.vor.setting.set_store(filename = 'abc') \n No command help available \n :param filename: No help available """ param = Conversions.value_to_quoted_str(filename) self._core.io.write(f'SOURce<HwInstance>:BB:VOR:SETTing:STORe {param}')