Executes the drop operation.
Namespace: Altaxo.GuiAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public delegate DropReturnData DropDelegate(
Object data,
Object nonGuiTargetItem,
DragDropRelativeInsertPosition insertPosition,
bool isCtrlKeyPressed,
bool isShiftKeyPressed
)
Parameters
- data Object
- The data to accept.
- nonGuiTargetItem Object
- The target item of this drop operation. Can be either a non gui list or tree node, or a tag of a Gui item.
- insertPosition DragDropRelativeInsertPosition
- The insert position (applies for lists and trees only).
- isCtrlKeyPressed Boolean
- If set to true, the control key is pressed.
- isShiftKeyPressed Boolean
- If set to true, the shift key is pressed.
Return Value
DropReturnDataData that indicate whether the drop operation was successful, and whether the items were copyied or moved. See
DropReturnData.
See Also