Search
FlowChart.NodesIntersect Method
See Also
 



Determines whether two nodes intersect.

 Syntax

VB6  Copy Code

Public Function NodesIntersect( _
    ByVal node1 As Object, _
    ByVal node2 As Object _
) As Boolean

C++  Copy Code

public:
bool NodesIntersect (
    IDispatch* node1,
    IDispatch* node2
)

 Parameters

node1
The first node to test for intersection.
node2
The second node to test for intersection.

 Return Value

true if the two nodes intersect; otherwise, false.

 Remarks

NodesIntersect determines whether two diagram nodes intersect, taking into account their shapes' outlines.

 See Also