Search
Table.GetRowOutgoingArrows Method
See Also
 



Returns the collection of arrows that go out from a row of the table.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
IArrows* GetRowOutgoingArrows (
    int row
)

 Parameters

row

The index of the row whose outgoing arrows to return.

 Return Value

A collection of Arrow objects, going out of the table row.

 Remarks

Returns a collection of all arrows going out of the specified table row. Through this collection you can enumerate them and have access to the properties and methods of each outgoing arrow. If the row has not outgoing arrows the collection Count property is zero.

 See Also