Skip to main content
All docs
V25.1
  • DiagramCustomItemDragResultEventArgs(DiagramControl, ReadOnlyCollection<DiagramItem>, Boolean, DragDropEffects) Constructor

    Initializes a new instance of the DiagramCustomItemDragResultEventArgs class with specified settings.

    Namespace: DevExpress.Xpf.Diagram

    Assembly: DevExpress.Xpf.Diagram.v25.1.dll

    NuGet Package: DevExpress.Wpf.Diagram

    Declaration

    public DiagramCustomItemDragResultEventArgs(
        DiagramControl source,
        ReadOnlyCollection<DiagramItem> items,
        bool canceled,
        DragDropEffects result
    )

    Parameters

    Name Type Description
    source DiagramControl

    The DiagramControl that raised the event.

    items ReadOnlyCollection<DiagramItem>

    The list of items that are objects of the drag-and-drop operation.

    canceled Boolean

    true, if the drag-and-drop operation has been canceled; otherwise, false.

    result DragDropEffects

    The drag-and-drop operation result.

    See Also