Search
FlowChart.FindTable Method
See Also
 



Finds a table whose Tag matches the specified value.

 Syntax

VB6  Copy Code

Public Function FindTable( _
    ByVal nTag As Long _
) As Table

C++  Copy Code

public:
Table* FindTable (
    int nTag
)

 Parameters

nTag
The tag of the searched table.

 Return Value

A reference to a Table object, which is the first table found with the requested tag, or null reference (Nothing in Visual Basic) if none is found.

 See Also