Class RowDroppedEventArgs<T>
Provides information about the RowDropped event.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class RowDroppedEventArgs<T> : RowDragEventArgs<T>
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component |
Constructors
RowDroppedEventArgs()
Declaration
public RowDroppedEventArgs()
Properties
Action
Gets the current action performed during drag and drop between two grids.
Declaration
public string Action { get; }
Property Value
Type | Description |
---|---|
System.String | The current action can be one of the following:
|
Remarks
The value of the Action property will be null
when the drag and drop operation occurs within the same grid and the RowDropping event is triggered.
ClientX
Gets the X-coordinate of the mouse pointer in the browser's client area at the time the event was triggered.
Declaration
public double ClientX { get; }
Property Value
Type | Description |
---|---|
System.Double | The X-coordinate of the mouse pointer. |
ClientY
Gets the Y-coordinate of the mouse pointer in the browser's client area at the time the event was triggered.
Declaration
public double ClientY { get; }
Property Value
Type | Description |
---|---|
System.Double | The Y-coordinate of the mouse pointer. |