Skip to main content
A newer version of this page is available. .

EndDragRowEventArgs(BaseRow, Point, RowDragEffect, Boolean) Constructor

Creates an new EndDragRowEventArgs object.

Namespace: DevExpress.XtraVerticalGrid.Events

Assembly: DevExpress.XtraVerticalGrid.v19.1.dll

Declaration

public EndDragRowEventArgs(
    BaseRow row,
    Point pt,
    RowDragEffect effect,
    bool canceled
)

Parameters

Name Type Description
row BaseRow

A BaseRow object representing the row being dropped. This value is assigned to the RowEventArgs.Row property.

pt Point

A Point structure defining the screen coordinates for a point under the mouse cursor. This value is assigned to the DragRowEventArgs.ScreenLocation property.

effect RowDragEffect

A RowDragEffect enumeration value specifying the effects available for the processed drag and drop operation. This value is assigned to the DragRowEventArgs.Effect property.

canceled Boolean

true if the processed drag and drop operation was canceled by the end-user; otherwise false. This value is assigned to the EndDragRowEventArgs.Canceled property.

See Also