# ItemChangedEventHandler

Namespace: **Wisej.Web**

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

Represents the method that will handle the [ItemChanged](https://docs.wisej.com/api/wisej.web/wisej.web.currencymanager#itemchanged) event of the [CurrencyManager](https://docs.wisej.com/api/wisej.web/data-binding/wisej.web.currencymanager) class.

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

```csharp
public delegate void ItemChangedEventHandler(Object sender, ItemChangedEventArgs e)
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}

## Parameters

| Name       | Type                                                                                                     | Description                                                                                                                               |
| ---------- | -------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| **sender** | [Object](https://docs.microsoft.com/dotnet/api/system.object)                                            | The source of the event.                                                                                                                  |
| **e**      | [ItemChangedEventArgs](https://docs.wisej.com/api/wisej.web/data-binding/wisej.web.itemchangedeventargs) | An [ItemChangedEventArgs](https://docs.wisej.com/api/wisej.web/data-binding/wisej.web.itemchangedeventargs) that contains the event data. |

## Fired By

| Name                                                                                                      | Description                                   |
| --------------------------------------------------------------------------------------------------------- | --------------------------------------------- |
| [CurrencyManager.ItemChanged](https://docs.wisej.com/api/wisej.web/wisej.web.currencymanager#itemchanged) | Fired when the current item has been altered. |
