change_field_property#

PostProcessor3DLayout.change_field_property(plot_name: str, property_name: str, property_value: Any) bool#

Modify a field plot property.

Parameters:
plot_namestr

Name of the field plot.

property_namestr

Name of the property.

property_value

Value for the property.

Returns:
bool

True when successful, False when failed.

References

>>> oDesign.ChangeProperty

Examples

>>> from ansys.aedt.core.visualization.post.post_common_3d import PostProcessor3D
>>> obj = PostProcessor3D()
>>> obj.change_field_property(plot_name=1, property_name=1, property_value=1)