# Detecting Tap and Hold

The Tap and Hold touch action is converted to the Right-Click action on Windows. You can catch this event by using the C1ToucheventProvider.RightTapped event. When the C1ToucheventProvider.EnablePressAndHold property is False, the RightTapped event d

## Content

The Tap and Hold touch action is converted to the Right-Click action on Windows. You can catch this event by using the **C1ToucheventProvider.RightTapped** event. When the **C1ToucheventProvider.EnablePressAndHold** property is **False**, the **RightTapped** event does not occur and the **Tapped** event occurs repeatedly during the tap and hold action. For example, you can use this to implement the custom SpinButton for touch by using a couple of buttons.
[C#]

```csharp
c1TouchEventProvider1.EnablePressAndHold = false;
```

[Visual Basic]

```vbnet
C1TouchEventProvider1.EnablePressAndHold = False
```