

| 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 SwimLane1_SelectionChanged()
    With SwimLane1
        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