alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class DragStopEventArgs

    Provides arguments for the OnDragStop event, which is triggered when the user stops dragging the dialog.

    Inheritance
    object
    DragStopEventArgs
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.Popups
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class DragStopEventArgs
    Remarks

    This event is useful for performing actions after the dialog has been moved to a new position.

    Constructors

    DragStopEventArgs()

    Declaration
    public DragStopEventArgs()

    Properties

    Element

    Gets the DOM element of the dialog that was dragged.

    Declaration
    [JsonPropertyName("element")]
    public DOM Element { get; set; }
    Property Value
    Type Description
    DOM

    A DOM object representing the dialog.

    Remarks

    This refers to the main dialog element.

    Event

    Gets the browser's mouse event arguments for the drag stop action.

    Declaration
    [JsonPropertyName("event")]
    public MouseEventArgs Event { get; set; }
    Property Value
    Type Description
    MouseEventArgs

    A MouseEventArgs object.

    Remarks

    This provides details such as the final position of the mouse cursor.

    Helper

    Gets the drag helper element, which is a visual proxy of the dialog during the drag operation.

    Declaration
    [JsonPropertyName("helper")]
    public DOM Helper { get; set; }
    Property Value
    Type Description
    DOM

    A DOM object for the helper element.

    Remarks

    The helper element provides a lightweight representation of the dialog while dragging.

    Name

    Gets the name of the event.

    Declaration
    [JsonPropertyName("name")]
    public string Name { get; set; }
    Property Value
    Type Description
    string

    The event name as a string, typically "OnDragStop".

    Remarks

    Identifies the fired event.

    Target

    Gets the target element on which the drag was initiated.

    Declaration
    [JsonPropertyName("target")]
    public DOM Target { get; set; }
    Property Value
    Type Description
    DOM

    A DOM object representing the target.

    Remarks

    This is generally the dialog's header.

    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved