View that contains the raw data used by this view (read-only)
(self)
| 3023 | |
| 3024 | @property |
| 3025 | def parent_view(self) -> Optional['BinaryView']: |
| 3026 | """View that contains the raw data used by this view (read-only)""" |
| 3027 | result = core.BNGetParentView(self.handle) |
| 3028 | if result is None: |
| 3029 | return None |
| 3030 | return BinaryView(handle=result) |
| 3031 | |
| 3032 | @property |
| 3033 | def modified(self) -> bool: |
no test coverage detected