Source code for RsCMPX_Base.Implementations.Display

from ...Internal.Core import Core
from ...Internal.CommandsGroup import CommandsGroup
from ...Internal import Conversions
from ...Internal.Utilities import trim_str_response


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class DisplayCls: """Display commands group definition. 2 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("display", core, parent) @property def window(self): """window commands group. 1 Sub-classes, 0 commands.""" if not hasattr(self, '_window'): from .Window import WindowCls self._window = WindowCls(self._core, self._cmd_group) return self._window
[docs] def get_format_py(self) -> str: """SCPI: DISPlay:FORMat \n Snippet: value: str = driver.display.get_format_py() \n No command help available \n :return: arg_0: No help available """ response = self._core.io.query_str('DISPlay:FORMat?') return trim_str_response(response)
[docs] def set_format_py(self, arg_0: str) -> None: """SCPI: DISPlay:FORMat \n Snippet: driver.display.set_format_py(arg_0 = rawAbc) \n No command help available \n :param arg_0: No help available """ param = Conversions.value_to_str(arg_0) self._core.io.write(f'DISPlay:FORMat {param}')
def clone(self) -> 'DisplayCls': """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 = DisplayCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group