Search
FlowChart.Tables Property
See Also
 



Gets a collection of all tables in the flowchart.

 Syntax

VB6  Copy Code

Public Property Get Tables() As ITables

C++  Copy Code

public:
ITables* get_Tables ()

 Property Value

A collection of Table objects.

 Remarks

A collection of all the tables in current FlowChartX document. You can iterate over them using Count and Item properties or you can get standard enumerator object (IEnumVariant) using _NewEnum. Visual Basic gives access to this enumerator with the 'for each' statement.

 See Also