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

Method show_graph_report

python/binaryview.py:9412–9421  ·  view source on GitHub ↗

``show_graph_report`` displays a :py:class:`FlowGraph` object `graph` in a new tab with ``title``. :param title: Title of the graph :type title: Text string title of the tab :param graph: The graph you wish to display :type graph: :py:class:`FlowGraph` object

(self, title: str, graph: flowgraph.FlowGraph)

Source from the content-addressed store, hash-verified

9410 core.BNShowHTMLReport(self.handle, title, contents, plaintext)
9411
9412 def show_graph_report(self, title: str, graph: flowgraph.FlowGraph) -> None:
9413 """
9414 ``show_graph_report`` displays a :py:class:`FlowGraph` object `graph` in a new tab with ``title``.
9415
9416 :param title: Title of the graph
9417 :type title: Text string title of the tab
9418 :param graph: The graph you wish to display
9419 :type graph: :py:class:`FlowGraph` object
9420 """
9421 core.BNShowGraphReport(self.handle, title, graph.handle)
9422
9423 def get_address_input(self, prompt: str, title: str, current_address: Optional[int] = None) -> Optional[int]:
9424 """

Callers 2

showMethod · 0.45
dump_dwarfFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected