# SelectedGridItemChangedEventHandler

Namespace: **Wisej.Web**

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

Represents the method that will handle the [SelectedGridItemChanged](https://docs.wisej.com/api/wisej.web/lists-and-grids/propertygrid/..#selectedgriditemchanged) event of a [PropertyGrid](https://docs.wisej.com/api/wisej.web/lists-and-grids/propertygrid).

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

```csharp
public delegate void SelectedGridItemChangedEventHandler(Object sender, SelectedGridItemChangedEventArgs e)
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}

## Parameters

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

## Fired By

| Name                                                                                                                                 | Description                                                                                                                          |
| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ |
| [PropertyGrid.SelectedGridItemChanged](https://docs.wisej.com/api/wisej.web/lists-and-grids/propertygrid/..#selectedgriditemchanged) | Fired when the selected [GridItem](https://docs.wisej.com/api/wisej.web/lists-and-grids/propertygrid/wisej.web.griditem) is changed. |
