delete#

CoordinateSystem.delete()[source]#

Delete the coordinate system.

Returns:
bool

True when successful, False when failed.

Examples

Delete all coordinate systems in the design.

>>> from pyaedt import Maxwell2d
>>> app = Maxwell2d()
>>> cs_copy = [i for i in app.modeler.coordinate_systems]
>>> [i.delete() for i in cs_copy]