Search
Table.GetRowIncomingArrows Method
See Also
 



Returns the collection of arrows that enter into a row of the table.

 Syntax

VB6  Copy Code

Public Function GetRowIncomingArrows( _
    ByVal row As Long _
) As IArrows

C++  Copy Code

public:
IArrows* GetRowIncomingArrows (
    int row
)

 Parameters

row
The index of the row whose incoming arrows to return.

 Return Value

A collection of Arrow objects, pointing to the table row.

 Remarks

Returns a collection of all arrows pointing the specified table row. Through this collection you can enumerate them and have access to the properties and methods of each incoming arrow. If the row has no incoming arrows, the collection Count property is zero.

 See Also