change_property#

Pins3DLayout.change_property(value: list, names: list = None) bool#

Modify a property.

Parameters:
valuelist
nameslist, optional

The default is None.

Returns:
bool

True when successful, False when 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"])