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