change_property#
- Polygons3DLayout.change_property(value: list, names: list = None) bool#
Modify a property.
- Parameters:
- Returns:
- bool
Truewhen successful,Falsewhen failed.
References
>>> oEditor.ChangeProperty
Examples
>>> from ansys.aedt.core.modeler.pcb.object_3d_layout import Object3DLayout >>> value = ["NAME:ChangedProps", ["NAME:Demo"]] >>> obj = Object3DLayout.__new__(Object3DLayout) >>> obj.change_property(value, names=["U1"])