[docs]classMarkerCls:"""Marker commands group definition. 21 total commands, 11 Subgroups, 0 group commands Repeated Capability: Marker, default value after init: Marker.Nr1"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("marker",core,parent)self._cmd_group.rep_cap=RepeatedCapability(self._cmd_group.group_name,'repcap_marker_get','repcap_marker_set',repcap.Marker.Nr1)defrepcap_marker_set(self,marker:repcap.Marker)->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 Marker.Default Default value after init: Marker.Nr1"""self._cmd_group.set_repcap_enum_value(marker)defrepcap_marker_get(self)->repcap.Marker:"""Returns the current default repeated capability for the child set/get methods"""# noinspection PyTypeCheckerreturnself._cmd_group.get_repcap_enum_value()@propertydefy(self):"""y commands group. 1 Sub-classes, 1 commands."""ifnothasattr(self,'_y'):from.YimportYClsself._y=YCls(self._core,self._cmd_group)returnself._y@propertydeffunction(self):"""function commands group. 3 Sub-classes, 0 commands."""ifnothasattr(self,'_function'):from.FunctionimportFunctionClsself._function=FunctionCls(self._core,self._cmd_group)returnself._function@propertydefaoff(self):"""aoff commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_aoff'):from.AoffimportAoffClsself._aoff=AoffCls(self._core,self._cmd_group)returnself._aoff@propertydefstate(self):"""state commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_state'):from.StateimportStateClsself._state=StateCls(self._core,self._cmd_group)returnself._state@propertydeftrace(self):"""trace commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_trace'):from.TraceimportTraceClsself._trace=TraceCls(self._core,self._cmd_group)returnself._trace@propertydefx(self):"""x commands group. 2 Sub-classes, 1 commands."""ifnothasattr(self,'_x'):from.XimportXClsself._x=XCls(self._core,self._cmd_group)returnself._x@propertydefloExclude(self):"""loExclude commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_loExclude'):from.LoExcludeimportLoExcludeClsself._loExclude=LoExcludeCls(self._core,self._cmd_group)returnself._loExclude@propertydefpexcursion(self):"""pexcursion commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_pexcursion'):from.PexcursionimportPexcursionClsself._pexcursion=PexcursionCls(self._core,self._cmd_group)returnself._pexcursion@propertydefsymbol(self):"""symbol commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_symbol'):from.SymbolimportSymbolClsself._symbol=SymbolCls(self._core,self._cmd_group)returnself._symbol@propertydefcarrier(self):"""carrier commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_carrier'):from.CarrierimportCarrierClsself._carrier=CarrierCls(self._core,self._cmd_group)returnself._carrier@propertydefbsymbol(self):"""bsymbol commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_bsymbol'):from.BsymbolimportBsymbolClsself._bsymbol=BsymbolCls(self._core,self._cmd_group)returnself._bsymboldefclone(self)->'MarkerCls':"""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=MarkerCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group