Skip to main content

RowDeletedEventArgs(Int32, Int32, Object) Constructor

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

Namespace: DevExpress.Data

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public RowDeletedEventArgs(
    int rowHandle,
    int listIndex,
    object row
)

Parameters

Name Type Description
rowHandle Int32

The row handle. This value is used to initialize the RowDeletedEventArgs.RowHandle property.

listIndex Int32

The index of the row in the data source. This value is used to initialize the RowDeletedEventArgs.ListSourceIndex property.

row Object

An object that represents the current row. This value is used to initialize the RowDeletedEventArgs.Row property.

See Also