Click or drag to resize

XYZPlotLayerContentsControllerPlotItems_DropCanAcceptData Method

Determines whether dropped data can be accepted for the specified target item.

Namespace: Altaxo.Gui.Graph.Graph3D
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public void PlotItems_DropCanAcceptData(
	Object data,
	NGTreeNode targetItem,
	DragDropRelativeInsertPosition insertPosition,
	bool isCtrlKeyPressed,
	bool isShiftKeyPressed,
	out bool canCopy,
	out bool canMove,
	out bool itemIsSwallowingData
)

Parameters

data  Object
The drag data to inspect.
targetItem  NGTreeNode
The target item under the drop position.
insertPosition  DragDropRelativeInsertPosition
The relative insert position for the drop.
isCtrlKeyPressed  Boolean
If set to true, the Ctrl key is pressed.
isShiftKeyPressed  Boolean
If set to true, the Shift key is pressed.
canCopy  Boolean
Set to true if the data can be copied.
canMove  Boolean
Set to true if the data can be moved.
itemIsSwallowingData  Boolean
Set to true if the target item accepts the dropped data as its child.
See Also