

| Type | Description | |||
| Variant | A safe-array of Link objects that specifies the links that starts from the current element. You can use the for-each statement to enumerate all outgoing links. |
The following screen shot shows the outgoing links (red ):

The following VB sample enumerates the outgoing elements ( of selected elements ):
Private Sub Surface1_SelectionChanged()
With Surface1
Dim s As Variant
For Each s In .Selection
Debug.Print "Outgoing Elements of " & s.ID & "are: "
With s
For Each i In .OutgoingLinks
Debug.Print i.ElementTo.ID
Next
End With
Next
End With
End Sub