from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from .... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class MaskCls:
"""
| Commands in total: 15
| Subgroups: 7
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("mask", core, parent)
@property
def name(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_name'):
from .Name import NameCls
self._name = NameCls(self._core, self._cmd_group)
return self._name
@property
def comment(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_comment'):
from .Comment import CommentCls
self._comment = CommentCls(self._core, self._cmd_group)
return self._comment
@property
def mode(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_mode'):
from .Mode import ModeCls
self._mode = ModeCls(self._core, self._cmd_group)
return self._mode
@property
def upper(self):
"""
| Commands in total: 5
| Subgroups: 4
| Direct child commands: 0
"""
if not hasattr(self, '_upper'):
from .Upper import UpperCls
self._upper = UpperCls(self._core, self._cmd_group)
return self._upper
@property
def lower(self):
"""
| Commands in total: 4
| Subgroups: 3
| Direct child commands: 0
"""
if not hasattr(self, '_lower'):
from .Lower import LowerCls
self._lower = LowerCls(self._core, self._cmd_group)
return self._lower
@property
def currentDirectory(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_currentDirectory'):
from .CurrentDirectory import CurrentDirectoryCls
self._currentDirectory = CurrentDirectoryCls(self._core, self._cmd_group)
return self._currentDirectory
@property
def span(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_span'):
from .Span import SpanCls
self._span = SpanCls(self._core, self._cmd_group)
return self._span
[docs]
def delete(self, window=repcap.Window.Default) -> None:
"""
``CALCulate<n>:MASK:DELete`` \n
Snippet: ``driver.calculate.mask.delete(window = repcap.Window.Default)`` \n
No help available
:param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Calculate')
"""
window_cmd_val = self._cmd_group.get_repcap_cmd_value(window, repcap.Window)
self._core.io.write(f'CALCulate{window_cmd_val}:MASK:DELete')
[docs]
def delete_with_opc(self, window=repcap.Window.Default, opc_timeout_ms: int = -1) -> None:
window_cmd_val = self._cmd_group.get_repcap_cmd_value(window, repcap.Window)
"""
``CALCulate<n>:MASK:DELete`` \n
Snippet: ``driver.calculate.mask.delete_with_opc(window = repcap.Window.Default)`` \n
No help available
Same as delete, but waits for the operation to complete before continuing further. Use the RsFsw.utilities.opc_timeout_set() to set the timeout value.
:param window: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Calculate')
:param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.
"""
self._core.io.write_with_opc(f'CALCulate{window_cmd_val}:MASK:DELete', opc_timeout_ms)
def clone(self) -> 'MaskCls':
"""
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 = MaskCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group