export_all_mount_points#
- Layer.export_all_mount_points(project, cca_name, export_file, units='DEFAULT')#
Export the mount point properties for a CCA.
- Parameters:
- project: str
Name of the Sherlock project.
- cca_name: str
Name of the CCA.
- export_file: str
Full path for the CSV file to export the mount points list to.
- units: str, optional
Units to use when exporting the mount points. The default is
DEFAULT
.
- Returns:
- :
int
Status code of the response. 0 for success.
- Return type:
Examples
>>> from ansys.sherlock.core.launcher import launch_sherlock >>> sherlock = launch_sherlock() >>> sherlock.project.import_odb_archive( >>> "ODB++ Tutorial.tgz", >>> True, >>> True, >>> True, >>> True, >>> project="Tutorial Project", >>> cca_name="Card", >>> ) >>> sherlock.layer.export_all_mount_points( >>> "Tutorial Project", >>> "Card", >>> "MountPointsExport.csv", >>> "DEFAULT" >>> )