set_properties#
- Common.set_properties(data: Dict[str, Any])[source]#
Assign the passed data to the internal data model.
- Parameters:
- data
dict
Dictionary containing the properties to update.
- data
- Returns:
Examples
>>> from ansys.aedt.toolkits.common.backend.api import Common >>> toolkit_api = Common() >>> value2 = 2 >>> toolkit_api.set_properties({"property1": "value1", "property2": value2})