Table of Contents

Constructor TouchCanceledEventArgs

Namespace
DotNetBrowser.Input.Touch.Events
Assembly
DotNetBrowser.dll

TouchCanceledEventArgs(params TouchPoint[])

Initializes a new instance of the TouchCanceledEventArgs with the specified touch points.

public TouchCanceledEventArgs(params TouchPoint[] points)

Parameters

points TouchPoint[]

The touch points to add.

Exceptions

InvalidEnumArgumentException

No touch points with the required state are passed.

ArgumentNullException

The points is null.

TouchCanceledEventArgs(IEnumerable<TouchPoint>)

Initializes a new instance of the TouchCanceledEventArgs with the specified touch points.

public TouchCanceledEventArgs(IEnumerable<TouchPoint> points)

Parameters

points IEnumerable<TouchPoint>

The touch points to add.

Exceptions

InvalidEnumArgumentException

If no points with the required state are passed.

ArgumentNullException

If points is null.