delete#

RxSaturationNode.delete() None#

Delete this node.

Examples

>>> from ansys.aedt.core import Emit
>>> app = Emit()
>>> radio = app.schematic.create_component("New Radio")
>>> band = radio.children[0]
>>> rx_profile = band.children[1]
>>> rx_saturation = rx_profile.add_rx_saturation()
>>> rx_saturation.delete()