GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoLink Class / AbstractLink Property
In This Topic
    AbstractLink Property
    In This Topic
    Get the object acting as the IGoLink.
    Syntax
    [Description("The object acting as the IGoLink.")]
    public virtual IGoLink AbstractLink {get; set;}

    Property Value

    Initially this value will be this GoLink itself. Any new value must not be null.
    Remarks
    This property allows a GoLink to be used in the implementation of an IGoLink without being the IGoLink. This is important to avoid confusion in classes such as GoLabeledLink. When the link is copied or removed, it is actually the abstract link that is copied or removed, not just this GoLink object.
    See Also