Blazor

Upgrade Guide User Guide Demos Support Forums Download
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class DragAndDropEventArgs - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class DragAndDropEventArgs

    Specifies class for DragAndDrop event arguments.

    Inheritance
    System.Object
    DragAndDropEventArgs
    Namespace: Syncfusion.Blazor.Navigations
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class DragAndDropEventArgs : Object

    Constructors

    DragAndDropEventArgs()

    Declaration
    public DragAndDropEventArgs()

    Properties

    Cancel

    If you want to cancel this event then, set cancel as true. Otherwise, false.

    Declaration
    public bool Cancel { get; set; }
    Property Value
    Type Description
    System.Boolean

    ClonedNode

    Return the cloned element

    Declaration
    public DOM ClonedNode { get; set; }
    Property Value
    Type Description
    DOM

    DraggedNode

    Return the currently dragged TreeView node.

    Declaration
    public DOM DraggedNode { get; set; }
    Property Value
    Type Description
    DOM

    DraggedNodeData

    Return the currently dragged node as array of JSON object from data source.

    Declaration
    public NodeData DraggedNodeData { get; set; }
    Property Value
    Type Description
    NodeData

    DraggedParentNode

    Return the dragged element's source parent

    Declaration
    public DOM DraggedParentNode { get; set; }
    Property Value
    Type Description
    DOM

    DropIndex

    Returns the dragged/dropped element's target index position

    Declaration
    public Nullable<int> DropIndex { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Int32>

    DropIndicator

    Return the cloned element's drop status icon while dragging

    Declaration
    public string DropIndicator { get; set; }
    Property Value
    Type Description
    System.String

    DropLevel

    Returns the dragged/dropped element's target level

    Declaration
    public Nullable<int> DropLevel { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Int32>

    DroppedNode

    Return the dropped TreeView node.

    Declaration
    public DOM DroppedNode { get; set; }
    Property Value
    Type Description
    DOM

    DroppedNodeData

    Return the dropped node as array of JSON object from data source.

    Declaration
    public NodeData DroppedNodeData { get; set; }
    Property Value
    Type Description
    NodeData

    DropTarget

    Return the dragged element's destination parent

    Declaration
    public DOM DropTarget { get; set; }
    Property Value
    Type Description
    DOM

    Event

    Return the actual event.

    Declaration
    public object Event { get; set; }
    Property Value
    Type Description
    System.Object

    Left

    Declaration
    public double Left { get; set; }
    Property Value
    Type Description
    System.Double

    Name

    Return the Event name

    Declaration
    public string Name { get; set; }
    Property Value
    Type Description
    System.String

    PreventTargetExpand

    Return boolean value for preventing auto-expanding of parent node.

    Declaration
    public bool PreventTargetExpand { get; set; }
    Property Value
    Type Description
    System.Boolean

    Target

    Return the target element from which drag starts/end.

    Declaration
    public DOM Target { get; set; }
    Property Value
    Type Description
    DOM

    Top

    Declaration
    public double Top { get; set; }
    Property Value
    Type Description
    System.Double
    Back to top Generated by DocFX
    Copyright © 2001 - 2021 Syncfusion Inc. All Rights Reserved