AvaloniaList<T>.

MoveRange(int, int, int) Method

Summary

Moves multiple items to a new index.
Namespace
Avalonia.Collections
Containing Type
AvaloniaList<T>

Syntax

public void MoveRange(int oldIndex, int count, int newIndex)

Parameters

Name Type Description
oldIndex int The first index of the items to move.
count int The number of items to move.
newIndex int The index to move the items to.

Return Value

Type Description
void