Skip to main content
Version: 3.5

DataGridViewRowsRemovedEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the RowsRemoved event.

public class DataGridViewRowsRemovedEventArgs : EventArgs

Constructors

Instance memberDataGridViewRowsRemovedEventArgs(rowIndex, rowCount)

Initializes a new instance of the DataGridViewRowsRemovedEventArgs class.

NameTypeDescription
rowIndexInt32The zero-based index of the row that was deleted, or the first deleted row if multiple rows were deleted.
rowCountInt32The number of rows that were deleted.

Properties

Instance memberRowCount

Int32: Returns the number of rows that were deleted.

Instance memberRowIndex

Int32: Returns the zero-based index of the row deleted, or the first deleted row if multiple rows were deleted.

Used By

NameDescription
DataGridViewRowsRemovedEventHandlerRepresents the method that will handle the RowsRemoved event of a DataGridView.