Class DragAndDropEventArgs
Specifies class for DragAndDrop event arguments.
Inheritance
System.Object
DragAndDropEventArgs
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
DraggedNode
Return the currently dragged TreeView node.
Declaration
public DOM DraggedNode { get; set; }
Property Value
DraggedNodeData
Return the currently dragged node as array of JSON object from data source.
Declaration
public NodeData DraggedNodeData { get; set; }
Property Value
DraggedParentNode
Return the dragged element's source parent
Declaration
public DOM DraggedParentNode { get; set; }
Property Value
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
DroppedNodeData
Return the dropped node as array of JSON object from data source.
Declaration
public NodeData DroppedNodeData { get; set; }
Property Value
DropTarget
Return the dragged element's destination parent
Declaration
public DOM DropTarget { get; set; }
Property Value
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
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
Top
Declaration
public double Top { get; set; }
Property Value
Type |
Description |
System.Double |
|