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

ItemDropEventArgs(Int32, Int32, Int32, Object, Object) Constructor

Initializes a new instance of the ItemDropEventArgs class with the specified settings.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public ItemDropEventArgs(
    int rowHandle,
    int listSourceIndex,
    int prevListSourceIndex,
    object groupValue,
    object prevGroupValue
)

Parameters

Name Type Description
rowHandle Int32

The row handle of the tile. This value is assigned to the ItemDropEventArgs.RowHandle property.

listSourceIndex Int32

The tile’s index in the data source. This value is assigned to the ItemDropEventArgs.ListSourceRowIndex property.

prevListSourceIndex Int32

The tile’s previous index in the data source. This value is assigned to the ItemDropEventArgs.PrevListSourceRowIndex property.

groupValue Object

The tile’s current group value. This value is assigned to the ItemDropEventArgs.GroupColumnValue property.

prevGroupValue Object

The tile’s previous group value. This value is assigned to the ItemDropEventArgs.PrevGroupColumnValue property.

See Also