AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.7" />

 TouchEvent

public class TouchEvent : UiEvent
Represents the event arguments for a touch event.
public ITouchList ChangedTouches { get; }

Gets a list with changed touch points.

public bool IsAltPressed { get; }

Gets if the alt key is pressed.

public bool IsCtrlPressed { get; }

Gets if the control key is pressed.

public bool IsMetaPressed { get; }

Gets if the meta key is pressed.

public bool IsShiftPressed { get; }

Gets if the shift key is pressed.

public ITouchList TargetTouches { get; }

Gets a list with touch points over the target.

public ITouchList Touches { get; }

Gets a list with all active touch points.

public TouchEvent()