# TouchEventArgs

Namespace: **Wisej.Web**

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

Provides data for [Swipe](https://docs.wisej.com/api/wisej.web/general/control/..#swipe) event.

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

```csharp
public class TouchEventArgs : EventArgs
```

{% endtab %}

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

```visual-basic
Public Class TouchEventArgs
    Inherits EventArgs
```

{% endtab %}
{% endtabs %}

## Properties

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) Identifiers

[Int64\[\]](https://docs.microsoft.com/dotnet/api/system.int64): Returns the unique identifiers for the touch items.

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) IsMultiTouch

[Boolean](https://docs.microsoft.com/dotnet/api/system.boolean): Returns whether more than one touch is associated with the event target element.

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) Locations

[Point\[\]](https://docs.microsoft.com/dotnet/api/system.drawing.point): Returns the location of the touch items in screen coordinates.

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) Rotation

[Double](https://docs.microsoft.com/dotnet/api/system.double): Returns the delta of the rotation since the start of the event, in degrees.

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) Scale

[Double](https://docs.microsoft.com/dotnet/api/system.double): Returns the distance between two fingers since the start of the event.

## Used By

| Name                                                                                                  | Description                                                                                                                                                                                                                                                                                                                                                                           |
| ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [TouchEventHandler](https://docs.wisej.com/api/wisej.web/general/control/wisej.web.toucheventhandler) | Represents the method that will handle the [TouchStart](https://docs.wisej.com/api/wisej.web/general/control/..#touchstart), [TouchEnd](https://docs.wisej.com/api/wisej.web/general/control/..#touchend), [TouchMove](https://docs.wisej.com/api/wisej.web/general/control/..#touchmove), [TouchCancel](https://docs.wisej.com/api/wisej.web/general/control/..#touchcancel) events. |
