Interface ILink<T>
Represents a link between two shapes.
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public interface ILink<T> : ILink
Type Parameters
T
The type of link. |
Properties
Source
Gets or sets the source.
Declaration
T Source { get; set; }
Property Value
T
The source. |
Target
Gets or sets the target.
Declaration
T Target { get; set; }
Property Value
T
The target. |