Borodar.ReorderableList.ItemMovingEventArgs.ItemMovingEventArgs C# (CSharp) Method

ItemMovingEventArgs() public method

Initializes a new instance of ItemMovingEventArgs.
public ItemMovingEventArgs ( IReorderableListAdaptor adaptor, int itemIndex, int destinationItemIndex ) : System
adaptor IReorderableListAdaptor Reorderable list adaptor.
itemIndex int Zero-based index of item.
destinationItemIndex int Xero-based index of item destination.
return System
        public ItemMovingEventArgs(IReorderableListAdaptor adaptor, int itemIndex, int destinationItemIndex)
        {
            this.Adaptor = adaptor;
            this.ItemIndex = itemIndex;
            this.DestinationItemIndex = destinationItemIndex;
        }
ItemMovingEventArgs