Show / Hide Table of Contents

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 Source

CanAppendItems(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.

View Source

CopyItemsTo(object)

Copies the given items into this object.

Declaration
void CopyItemsTo(object dragData)
Parameters
Type Name Description
object dragData

The items.

View Source

MoveItemsTo(object)

Moves the given items into this object.

Declaration
void MoveItemsTo(object dragData)
Parameters
Type Name Description
object dragData

The items.

  • View Source
In this article
Back to top Generated by DocFX