update#
- Setup.update(properties: dict = None) bool#
Update the setup based on either the class argument or a dictionary.
- Parameters:
- properties
optional Dictionary to use to update the setup. The default is
None.
- properties
- Returns:
- bool
Truewhen successful,Falsewhen failed.
References
>>> oModule.EditSetup
Examples
>>> from ansys.aedt.core.modules.solve_setup import Setup >>> obj = Setup() >>> obj.update(properties={"Name": "Value"})