``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)
| 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 | """ |
no outgoing calls
no test coverage detected