notes#

property CADNode.notes: str#

Expand to view/edit notes stored with the project.

Examples

>>> from ansys.aedt.core import Emit
>>> app = Emit()
>>> rev = app.results.analyze()
>>> cad = [c for c in rev.get_scene_node().children if c.node_type == "CADNode"][0]
>>> cad.notes = "example_value"