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

StartDragRowEventArgs(BaseRow, Point, RowDragEffect, RowDragSource) Constructor

Creates a new StartDragRowEventArgs object.

Namespace: DevExpress.XtraVerticalGrid.Events

Assembly: DevExpress.XtraVerticalGrid.v19.1.dll

Declaration

public StartDragRowEventArgs(
    BaseRow row,
    Point pt,
    RowDragEffect effect,
    RowDragSource source
)

Parameters

Name Type Description
row BaseRow

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

pt Point

A Point structure defining the screen coordinates of the point where dragging was initiated. This value is assigned to the DragRowEventArgs.ScreenLocation property.

effect RowDragEffect

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

source RowDragSource

A RowDragSource enumeration value representing the source of the started dragging operation. This value is assigned to the StartDragRowEventArgs.Source property.

See Also