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

Method set_visibility_region

python/flowgraph.py:334–335  ·  view source on GitHub ↗
(self, x: int, y: int, w: int, h: int)

Source from the content-addressed store, hash-verified

332 return core.BNIsNodeValidForFlowGraph(graph.handle, self.handle)
333
334 def set_visibility_region(self, x: int, y: int, w: int, h: int):
335 core.BNFlowGraphNodeSetVisibilityRegion(self.handle, x, y, w, h)
336
337 def set_outgoing_edge_points(self, edge_num: int, points: List[Tuple[float, float]]):
338 point_buf = (core.BNPoint * len(points))()

Callers 1

layoutMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected