Search
FlowChart.GetArrowAt Method
See Also
 



Gets the arrow placed at a certain location in the diagram.

 Syntax

VB6  Copy Code

Public Function GetArrowAt( _
    ByVal docX As Long, _
    ByVal docY As Long _
) As Arrow

C++  Copy Code

public:
Arrow* GetArrowAt (
    int docX,
    int docY
)

 Parameters

docX
The x coordinate of a document point.
docY
The y coordinate of a document point.

 Return Value

The Arrow object found; null (Nothing in Visual Basic) if no arrow is found at the specified location.

 Remarks

Call the method to get the arrow at a certain place in the document. The method searches starting from the top of Z-order and returns the first arrow found. The specified point might not be laying exactly on the arrow, but within a certain range from it.

 See Also