ModelItemCollection.Move(Int32, Int32) Method

Definition

Moves an item in the collection to a different index.

public:
 abstract void Move(int fromIndex, int toIndex);
public abstract void Move (int fromIndex, int toIndex);
abstract member Move : int * int -> unit
Public MustOverride Sub Move (fromIndex As Integer, toIndex As Integer)

Parameters

fromIndex
Int32

The index of the item to be moved before the move.

toIndex
Int32

The index of the item after it is moved.

Exceptions

Either fromIndex or toIndex is negative or greater than or equal to Count.

Applies to