MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / root_component

Method root_component

python/binaryview.py:7118–7126  ·  view source on GitHub ↗

The root component for the BinaryView (read-only) This Component cannot be removed, and houses all unparented Components. :return: The root component

(self)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 1

ComponentMethod · 0.80

Tested by

no test coverage detected