update#

SetupHFSSAuto.update(properties: dict = None) bool#

Update the setup based on either the class argument or a dictionary.

Parameters:
propertiesoptional

Dictionary to use to update the setup. The default is None.

Returns:
bool

True when successful, False when failed.

References

>>> oModule.EditSetup

Examples

>>> from ansys.aedt.core import Hfss
>>> app = Hfss()
>>> setup = app.create_setup()
>>> setup.update(properties={"Name": "Value"})