Source code for RsNgx.Implementations.Status.Operation.Instrument.Isummary

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal.RepeatedCapability import RepeatedCapability
from ...... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class IsummaryCls: """Isummary commands group definition. 5 total commands, 5 Subgroups, 0 group commands Repeated Capability: Channel, default value after init: Channel.Nr1""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("isummary", core, parent) self._cmd_group.rep_cap = RepeatedCapability(self._cmd_group.group_name, 'repcap_channel_get', 'repcap_channel_set', repcap.Channel.Nr1) def repcap_channel_set(self, channel: repcap.Channel) -> None: """Repeated Capability default value numeric suffix. This value is used, if you do not explicitely set it in the child set/get methods, or if you leave it to Channel.Default Default value after init: Channel.Nr1""" self._cmd_group.set_repcap_enum_value(channel) def repcap_channel_get(self) -> repcap.Channel: """Returns the current default repeated capability for the child set/get methods""" # noinspection PyTypeChecker return self._cmd_group.get_repcap_enum_value() @property def event(self): """event commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_event'): from .Event import EventCls self._event = EventCls(self._core, self._cmd_group) return self._event @property def condition(self): """condition commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_condition'): from .Condition import ConditionCls self._condition = ConditionCls(self._core, self._cmd_group) return self._condition @property def ptransition(self): """ptransition commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_ptransition'): from .Ptransition import PtransitionCls self._ptransition = PtransitionCls(self._core, self._cmd_group) return self._ptransition @property def ntransition(self): """ntransition commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_ntransition'): from .Ntransition import NtransitionCls self._ntransition = NtransitionCls(self._core, self._cmd_group) return self._ntransition @property def enable(self): """enable commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_enable'): from .Enable import EnableCls self._enable = EnableCls(self._core, self._cmd_group) return self._enable