load_edb#
- EDBCommon.load_edb(edb_path=None)[source]#
Load the EDB project.
- Parameters:
- edb_path
str
,optional
Full path to the
aedb
folder.
- edb_path
- Returns:
- bool
True
when successful,False
when failed.
Examples
>>> from ansys.aedt.toolkits.common.backend.api import EDBCommon >>> toolkit_api = EDBCommon() >>> toolkit_api.load_edb("path/to/file") >>> toolkit_api.close_edb()