Search
FlowChart.GetTableAt Method
See Also
 



Finds the topmost table containing the specified point.

 Syntax

VB6  Copy Code

Public Function GetTableAt( _
    ByVal docX As Long, _
    ByVal docY As Long _
) As Table

C++  Copy Code

public:
Table* GetTableAt (
    int docX,
    int docY
)

 Parameters

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

 Return Value

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

 Remarks

Looks for a table containing the (docX, docY) point passed as parameter. If there are more than one tables at that point, the highest table in the Z order is returned.

 See Also