

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

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