The root component for the BinaryView (read-only) This Component cannot be removed, and houses all unparented Components. :return: The root component
(self)
| 7116 | |
| 7117 | @property |
| 7118 | def root_component(self) -> component.Component: |
| 7119 | """ |
| 7120 | The root component for the BinaryView (read-only) |
| 7121 | |
| 7122 | This Component cannot be removed, and houses all unparented Components. |
| 7123 | |
| 7124 | :return: The root component |
| 7125 | """ |
| 7126 | return component.Component(core.BNGetRootComponent(self.handle)) |
| 7127 | |
| 7128 | def create_component(self, name: Optional[str] = None, parent: Union[component.Component, str, None] = None) -> component.Component: |
| 7129 | """ |