Search
FlowChart.CreateLink Method
See Also
 



Creates an arrow connecting a box to a table.

 Syntax

VB6  Copy Code

Public Function CreateLink( _
    ByVal table As Table, _
    ByVal rowNum As Long, _
    ByVal box As Box, _
    ByVal fromTableToBox As Boolean _
) As Arrow

C++  Copy Code

public:
Arrow* CreateLink (
    Table* table,
    int rowNum,
    Box* box,
    bool fromTableToBox
)

 Parameters

table
The table to which the arrow is attached.
rowNum
The index of the table's row.
box
The box to which the arrow is attached.
fromTableToBox
The direction of the arrow.

 Return Value

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

 Remarks

Creates an arrow, connecting a row of a table to a box. If fromTableToBox is set to true then the arrow points from the table to the box; otherwise it points from the box to the table.

 See Also