Get the file backing this external library :return: The file backing this external library or None
(self)
| 56 | |
| 57 | @property |
| 58 | def backing_file(self) -> Optional[project.ProjectFile]: |
| 59 | """ |
| 60 | Get the file backing this external library |
| 61 | |
| 62 | :return: The file backing this external library or None |
| 63 | """ |
| 64 | handle = core.BNExternalLibraryGetBackingFile(self._handle) |
| 65 | if handle is None: |
| 66 | return None |
| 67 | return project.ProjectFile(handle) |
| 68 | |
| 69 | @backing_file.setter |
| 70 | def backing_file(self, new_file: Optional[project.ProjectFile]): |
nothing calls this directly
no test coverage detected