# TrackEventHandler

Namespace: **Wisej.Web**

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

Represents the method that will handle the [Track](https://docs.wisej.com/api/wisej.web/general/control/..#track) event.

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

```csharp
public delegate void TrackEventHandler(Object sender, TrackEventArgs e)
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}

## Parameters

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

## Fired By

| Name                                                                           | Description                                                     |
| ------------------------------------------------------------------------------ | --------------------------------------------------------------- |
| [Control.Track](https://docs.wisej.com/api/wisej.web/general/control/..#track) | Fired when a pointer grabs an item and moves the pointer on it. |
