Table of Contents

Class Touchscreen

Namespace
PuppeteerSharp.Input
Assembly
PuppeteerSharp.dll

Supports all classes in the .NET class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all .NET classes; it is the root of the type hierarchy.

public abstract class Touchscreen : ITouchscreen
Inheritance
Touchscreen
Implements
Derived

Methods

TapAsync(decimal, decimal)

Dispatches a touchstart and touchend event.

public Task TapAsync(decimal x, decimal y)

Parameters

x decimal

The touch X location.

y decimal

The touch Y location.

Returns

Task

Task.

See Also

TouchEndAsync()

Dispatches a touchend event on the first touch that is active.

public Task TouchEndAsync()

Returns

Task

A Task that resolves when the message was confirmed by the browser.

TouchMoveAsync(decimal, decimal)

Dispatches a touchmove event on the first touch that is active.

public Task TouchMoveAsync(decimal x, decimal y)

Parameters

x decimal

The touch X location.

y decimal

The touch Y location.

Returns

Task

A Task that resolves when the message was confirmed by the browser.

TouchStartAsync(decimal, decimal)

Dispatches a touchstart event.

public abstract Task<ITouchHandle> TouchStartAsync(decimal x, decimal y)

Parameters

x decimal

The touch X location.

y decimal

The touch Y location.

Returns

Task<ITouchHandle>

A Task that resolves with a handle for the touch that was started.