Class DragStopEventArgs
Provides arguments for the OnDragStop event, which is triggered when the user stops dragging the dialog.
Inheritance
System.Object
DragStopEventArgs
Namespace: Syncfusion.Blazor.Toolkit.Popups
Assembly: Syncfusion.Blazor.Toolkit.dll
Syntax
public class DragStopEventArgs : Object
Remarks
This event is useful for performing actions after the dialog has been moved to a new position.
Constructors
DragStopEventArgs()
Declaration
public DragStopEventArgs()
Properties
Event
Gets the browser's mouse event arguments for the drag stop action.
Declaration
public MouseEventArgs Event { get; set; }
Property Value
| Type | Description |
|---|---|
| Microsoft.AspNetCore.Components.Web.MouseEventArgs | A Microsoft.AspNetCore.Components.Web.MouseEventArgs object. |
Remarks
This provides details such as the final position of the mouse cursor.
Name
Gets the name of the event.
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The event name as a |
Remarks
Identifies the fired event.