Moves a range of items to a new index in the managed collection.

Namespace:  DlhSoft.Windows.Controls.Primitives
Assembly:  DlhSoft.Data.Controls (in DlhSoft.Data.Controls.dll)

Syntax

C#
public void MoveRange(
	int fromIndex,
	int count,
	int toIndex
)
Visual Basic (Declaration)
Public Sub MoveRange ( _
	fromIndex As Integer, _
	count As Integer, _
	toIndex As Integer _
)

Parameters

fromIndex
Type: System..::.Int32
The index to move the items from.
count
Type: System..::.Int32
The count of items to move.
toIndex
Type: System..::.Int32
The index to move the items to.

See Also