[docs]classModulationCls:"""Modulation commands group definition. 35 total commands, 11 Subgroups, 0 group commands Repeated Capability: Window, default value after init: Window.Nr1"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("modulation",core,parent)self._cmd_group.rep_cap=RepeatedCapability(self._cmd_group.group_name,'repcap_window_get','repcap_window_set',repcap.Window.Nr1)defrepcap_window_set(self,window:repcap.Window)->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 Window.Default Default value after init: Window.Nr1"""self._cmd_group.set_repcap_enum_value(window)defrepcap_window_get(self)->repcap.Window:"""Returns the current default repeated capability for the child set/get methods"""# noinspection PyTypeCheckerreturnself._cmd_group.get_repcap_enum_value()@propertydefevent(self):"""event commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_event'):from.EventimportEventClsself._event=EventCls(self._core,self._cmd_group)returnself._event@propertydefcondition(self):"""condition commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_condition'):from.ConditionimportConditionClsself._condition=ConditionCls(self._core,self._cmd_group)returnself._condition@propertydefenable(self):"""enable commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_enable'):from.EnableimportEnableClsself._enable=EnableCls(self._core,self._cmd_group)returnself._enable@propertydefptransition(self):"""ptransition commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_ptransition'):from.PtransitionimportPtransitionClsself._ptransition=PtransitionCls(self._core,self._cmd_group)returnself._ptransition@propertydefntransition(self):"""ntransition commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_ntransition'):from.NtransitionimportNtransitionClsself._ntransition=NtransitionCls(self._core,self._cmd_group)returnself._ntransition@propertydefevm(self):"""evm commands group. 5 Sub-classes, 0 commands."""ifnothasattr(self,'_evm'):from.EvmimportEvmClsself._evm=EvmCls(self._core,self._cmd_group)returnself._evm@propertydefphase(self):"""phase commands group. 5 Sub-classes, 0 commands."""ifnothasattr(self,'_phase'):from.PhaseimportPhaseClsself._phase=PhaseCls(self._core,self._cmd_group)returnself._phase@propertydefmagnitude(self):"""magnitude commands group. 5 Sub-classes, 0 commands."""ifnothasattr(self,'_magnitude'):from.MagnitudeimportMagnitudeClsself._magnitude=MagnitudeCls(self._core,self._cmd_group)returnself._magnitude@propertydefcfrequency(self):"""cfrequency commands group. 5 Sub-classes, 0 commands."""ifnothasattr(self,'_cfrequency'):from.CfrequencyimportCfrequencyClsself._cfrequency=CfrequencyCls(self._core,self._cmd_group)returnself._cfrequency@propertydefiqRho(self):"""iqRho commands group. 5 Sub-classes, 0 commands."""ifnothasattr(self,'_iqRho'):from.IqRhoimportIqRhoClsself._iqRho=IqRhoCls(self._core,self._cmd_group)returnself._iqRho@propertydeffsk(self):"""fsk commands group. 5 Sub-classes, 0 commands."""ifnothasattr(self,'_fsk'):from.FskimportFskClsself._fsk=FskCls(self._core,self._cmd_group)returnself._fskdefclone(self)->'ModulationCls':"""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=ModulationCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group