# ResponsiveProfileChangedEventHandler

Namespace: **Wisej.Web**

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

Represents the method that will handle the Application.ResponsiveProfileChanged event.

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

```csharp
public delegate void ResponsiveProfileChangedEventHandler(Object sender, ResponsiveProfileChangedEventArgs e)
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}

## Parameters

| Name       | Type                                                                                                                                  | Description                                                                                                                                                           |
| ---------- | ------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **sender** | [Object](https://docs.microsoft.com/dotnet/api/system.object)                                                                         | The source of the event.                                                                                                                                              |
| **e**      | [ResponsiveProfileChangedEventArgs](https://docs.wisej.com/api/wisej.web/general/control/wisej.web.responsiveprofilechangedeventargs) | A [ResponsiveProfileChangedEventArgs](https://docs.wisej.com/api/wisej.web/general/control/wisej.web.responsiveprofilechangedeventargs) that contains the event data. |

## Fired By

| Name                                                                                                                         | Description                                          |
| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- |
| [Control.ResponsiveProfileChanged](https://docs.wisej.com/api/wisej.web/control#responsiveprofilechanged)                    | Fired when the active responsive profile is changed. |
| [Application.ResponsiveProfileChanged](https://docs.wisej.com/api/wisej.web/general/application/..#responsiveprofilechanged) | Fired when the active responsive profile is changed. |
