GoLink

I’m using the following class for links:
Public Class BasicLink
Inherits GoLink

Public Sub New()
Me.Style = GoStrokeStyle.RoundedLine
Me.AvoidsNodes = True
Me.Reshapable = False
Me.Selectable = False
Me.HighlightWhenSelected = False
Me.HighlightPen = New Pen(Color.Blue, 5)
Me.Pen = New Pen(ColorTranslator.FromHtml("#0000CC"), 2)
Me.Brush = Brushes.Black
Me.ToArrow = True
End Sub

End Class
How can I set a text to be used in the links? Something like golink.text?

Thanks a lot,
Bernardo Heynemann

I did it using a GoLabeledLink …