# DataGridViewRowsRemovedEventHandler

Namespace: **Wisej.Web**

Assembly: **Wisej.Framework** (4.0.0.0)

Represents the method that will handle the [RowsRemoved](https://docs.wisej.com/api/wisej.web/lists-and-grids/datagridview/..#rowsremoved) event of a [DataGridView](https://docs.wisej.com/api/wisej.web/lists-and-grids/datagridview).

{% tabs %}
{% tab title="C#" %}

```csharp
public delegate void DataGridViewRowsRemovedEventHandler(Object sender, DataGridViewRowsRemovedEventArgs e)
```

{% endtab %}

{% tab title="VB.NET" %}

```visual-basic
Public Delegate Sub DataGridViewRowsRemovedEventHandler(ByVal sender As [Object], ByVal e As DataGridViewRowsRemovedEventArgs)
```

{% endtab %}
{% endtabs %}

## Parameters

| Name       | Type                                                                                                                                             | Description                                                                                                                                                                      |
| ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **sender** | [Object](https://docs.microsoft.com/dotnet/api/system.object)                                                                                    | The source of the event.                                                                                                                                                         |
| **e**      | [DataGridViewRowsRemovedEventArgs](https://docs.wisej.com/api/wisej.web/lists-and-grids/datagridview/wisej.web.datagridviewrowsremovedeventargs) | A [DataGridViewRowsRemovedEventArgs](https://docs.wisej.com/api/wisej.web/lists-and-grids/datagridview/wisej.web.datagridviewrowsremovedeventargs) that contains the event data. |

## Fired By

| Name                                                                                                         | Description                                                                                                                      |
| ------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------- |
| [DataGridView.RowsRemoved](https://docs.wisej.com/api/wisej.web/lists-and-grids/datagridview/..#rowsremoved) | Fired when a row or rows are deleted from the [DataGridView](https://docs.wisej.com/api/wisej.web/lists-and-grids/datagridview). |
