export_to_json# Setup3DLayout.export_to_json(file_path: str, overwrite: bool = False) → bool# Export all setup properties into a json file. Parameters: file_pathstrFile path of the json file. overwritebool, optionalWhether to overwrite the file if it already exists. Examples >>> from ansys.aedt.core.modules.solve_setup import Setup3DLayout >>> obj = Setup3DLayout() >>> obj.export_to_json(file_path="example.json")