Close an opened project :return: True if the project is now closed, False otherwise
(self)
| 367 | return core.BNProjectOpen(self._handle) |
| 368 | |
| 369 | def close(self) -> bool: |
| 370 | """ |
| 371 | Close an opened project |
| 372 | |
| 373 | :return: True if the project is now closed, False otherwise |
| 374 | """ |
| 375 | return core.BNProjectClose(self._handle) |
| 376 | |
| 377 | @property |
| 378 | def id(self) -> str: |
no outgoing calls