Interface ICanMoveItemsWithin
An interface for implementing drag-and-drop, allowing items to be dragged and dropped.
Namespace: Phoenix.BotBrain.Controls
Assembly: Phoenix.Plugin.BotBrain.Lists.dll
Syntax
public interface ICanMoveItemsWithinMethods
View SourceCopyItemsTo(object, int)
Copies the given items into this object.
Declaration
void CopyItemsTo(object dragData, int dropIndex)Parameters
| Type | Name | Description | 
|---|---|---|
| object | dragData | The items. | 
| int | dropIndex | The index where the items were dropped. | 
MoveItemsTo(object, int)
Moves the given items into this object.
Declaration
void MoveItemsTo(object dragData, int dropIndex)Parameters
| Type | Name | Description | 
|---|---|---|
| object | dragData | The items. | 
| int | dropIndex | The index where the items were dropped. |