Source code for RsFswp.Implementations.HardCopy.Treport.Item.Template

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class TemplateCls: """Template commands group definition. 4 total commands, 1 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("template", core, parent) @property def catalog(self): """catalog commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_catalog'): from .Catalog import CatalogCls self._catalog = CatalogCls(self._core, self._cmd_group) return self._catalog
[docs] def delete(self, template: str) -> None: """SCPI: HCOPy:TREPort:ITEM:TEMPlate:DELete \n Snippet: driver.hardCopy.treport.item.template.delete(template = '1') \n No command help available \n :param template: No help available """ param = Conversions.value_to_quoted_str(template) self._core.io.write(f'HCOPy:TREPort:ITEM:TEMPlate:DELete {param}')
[docs] def load(self, template: str) -> None: """SCPI: HCOPy:TREPort:ITEM:TEMPlate:LOAD \n Snippet: driver.hardCopy.treport.item.template.load(template = '1') \n No command help available \n :param template: No help available """ param = Conversions.value_to_quoted_str(template) self._core.io.write(f'HCOPy:TREPort:ITEM:TEMPlate:LOAD {param}')
[docs] def save(self, template: str) -> None: """SCPI: HCOPy:TREPort:ITEM:TEMPlate:SAVE \n Snippet: driver.hardCopy.treport.item.template.save(template = '1') \n No command help available \n :param template: No help available """ param = Conversions.value_to_quoted_str(template) self._core.io.write(f'HCOPy:TREPort:ITEM:TEMPlate:SAVE {param}')
def clone(self) -> 'TemplateCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = TemplateCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group