Interface ICanMoveItemsTo
An interface for implementing drag-and-drop, allowing items to be dropped.
Namespace: Phoenix.BotBrain.Controls
Assembly: Phoenix.Plugin.BotBrain.Lists.dll
Syntax
public interface ICanMoveItemsTo
Methods
View SourceCanAppendItems(object)
Determines if the given items can be moved or copied into this object.
Declaration
bool CanAppendItems(object dragData)
Parameters
| Type | Name | Description |
|---|---|---|
| object | dragData | The items. |
Returns
| Type | Description |
|---|---|
| bool | A boolean. |
CopyItemsTo(object)
Copies the given items into this object.
Declaration
void CopyItemsTo(object dragData)
Parameters
| Type | Name | Description |
|---|---|---|
| object | dragData | The items. |
MoveItemsTo(object)
Moves the given items into this object.
Declaration
void MoveItemsTo(object dragData)
Parameters
| Type | Name | Description |
|---|---|---|
| object | dragData | The items. |