# FingerPath methods

> Configure the `FingerPath` class using the methods exposed by this
type:

Configure the `FingerPath` class using the methods exposed by this
type:

## AddPoint

Add coordinate points to the X-Y axis, that represent the finger path on the device
screen.

### Definition

**Namespace**: UiPath.MobileAutomation.API.Models

**Assembly**: UiPath.MobileAutomation.API (in UiPath.MobileAutomation.API.dll)

```
public FingerPath AddPoint(
	double x,
	double y
)
```

`x` [Double](https://learn.microsoft.com/en-us/dotnet/api/system.double?view=net-8.0)
:   The coordinates for the X axis.

`y` [Double](https://learn.microsoft.com/en-us/dotnet/api/system.double?view=net-8.0)
:   The coordinates for the Y axis.

### Return value

**FingerPath** (from `public class FingerPath`)

All the points representing the path of the finger on the device screen, on a X-Y
axis.

## Create

Create the finger path.

### Definition

**Namespace**: UiPath.MobileAutomation.API.Models

**Assembly**: UiPath.MobileAutomation.API (in UiPath.MobileAutomation.API.dll)

```
public static FingerPath Create()
```

### Return value

**FingerPath** (from `public class FingerPath`)

All the points representing the path of the finger on the device screen, on a X-Y
axis.
