Search
FlowChart.CreateRelation Method
See Also
 



Creates an arrow connecting two tables.

 Syntax

VB6  Copy Code

Public Function CreateRelation( _
    ByVal pTableSrc As Table, _
    ByVal nRowSrc As Long, _
    ByVal pTableDst As Table, _
    ByVal nRowDst As Long _
) As Arrow

C++  Copy Code

public:
Arrow* CreateRelation (
    Table* pTableSrc,
    int nRowSrc,
    Table* pTableDst,
    int nRowDst
)

 Parameters

pTableSrc

The source table.

nRowSrc

The 0-based index of the row of the source table.

pTableDst

The destination table.

nRowDst

The 0-based index of the row of the destination table.

 Return Value

A reference to an Arrow object, representing the newly created arrow.

 Remarks

Creates an arrow, pointing from a row of the source table-object (pTableSrc) to a row of the destination table-object (pTableDst). These rows could visually represent table fields in entity-relationship diagrams. You can create many arrows connected to a single row of table.

 See Also