Show / Hide Table of Contents

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 ICanMoveItemsWithin

Methods

View Source

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

View Source

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.

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