visible#

property CADNode.visible: bool#

Toggle (on/off) display of CAD model in 3-D window.

Value should be ‘true’ or ‘false’.

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.visible = True