DataGridViewRowsRemovedEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the RowsRemoved event.
- C#
- VB.NET
public class DataGridViewRowsRemovedEventArgs : EventArgs
Public Class DataGridViewRowsRemovedEventArgs
Inherits EventArgs
Constructors
DataGridViewRowsRemovedEventArgs(rowIndex, rowCount)
Initializes a new instance of the DataGridViewRowsRemovedEventArgs class.
| Name | Type | Description |
|---|---|---|
| rowIndex | Int32 | The zero-based index of the row that was deleted, or the first deleted row if multiple rows were deleted. |
| rowCount | Int32 | The number of rows that were deleted. |
Properties
RowCount
Int32: Returns the number of rows that were deleted.
RowIndex
Int32: Returns the zero-based index of the row deleted, or the first deleted row if multiple rows were deleted.
Used By
| Name | Description |
|---|---|
| DataGridViewRowsRemovedEventHandler | Represents the method that will handle the RowsRemoved event of a DataGridView. |