An interface that models the selection state of a set of items.

Namespace: yWorks.Canvas.Model
Assembly: yWorks.yFilesNET.Viewer (in yWorks.yFilesNET.Viewer.dll) Version: 4.1.0.1 (4.1.0.1)

Syntax

C#
public interface ISelectionModel<T> : IEnumerable<T>, 
	IEnumerable
Visual Basic
Public Interface ISelectionModel(Of T) _
	Inherits IEnumerable(Of T), IEnumerable

Type Parameters

T
The type of items contained in the selection's domain.

Remarks

This interface extends the IEnumerable<(Of <(<'T>)>)> interface for convenient enumeration of the selected items. Use the GetEnumerator()()()() to get all selected items.

See Also