(self, graph)
| 329 | core.BNAddFlowGraphNodeOutgoingEdge(self.handle, edge_type, target.handle, style._to_core_struct()) |
| 330 | |
| 331 | def is_valid_for_graph(self, graph): |
| 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) |