IGraphSource<T>
Interface
Describes the elements of a generic MVVM graph source.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.Windows.Diagrams.Core.dll
Type Parameters:
T
The type of graph source.
Syntax:
C#
public interface IGraphSource<T> : IGraphSource
Properties
Gets the items.
C#
IEnumerable<T> Items { get; }
Gets the links.
C#
IEnumerable<ILink<T>> Links { get; }