Class ItemDropEventArgs
Provides data for InterSection Events(DragEnter,DragOver,DragLeave and ItemDrop) of the diagram.
Inheritance
System.Object
ItemDropEventArgs
Namespace: Syncfusion.UI.Xaml.Diagram
Assembly: Syncfusion.SfDiagram.WPF.dll
Syntax
public class ItemDropEventArgs : Object
Constructors
ItemDropEventArgs()
Declaration
public ItemDropEventArgs()
Properties
Cancel
Gets or sets to allow cancellation of events.
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |
DragEventArgs
Gets or sets the drag and drop operation
Declaration
public DragEventArgs DragEventArgs { get; set; }
Property Value
Type |
---|
System.Windows.DragEventArgs |
ItemSource
Gets the reason for the event either diagram or stencil.
Declaration
public Cause ItemSource { get; }
Property Value
Type |
---|
Cause |
Source
Gets or sets the dragging object
Declaration
public object Source { get; set; }
Property Value
Type |
---|
System.Object |
Target
Gets the intersected object when dragging or dropping over the element.
Declaration
public object Target { get; }
Property Value
Type |
---|
System.Object |