Click or drag to resize

TouchEvent Structure

Version 130.1.90
Touch Event
Inheritance Hierarchy
SystemObject
  SystemValueType
    CefSharp.StructsTouchEvent

Namespace: CefSharp.Structs
Assembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
Syntax
public struct TouchEvent

The TouchEvent type exposes the following members.

Properties
 NameDescription
Public propertyId Id of a touch point. Must be unique per touch, can be any number except -1. Note that a maximum of 16 concurrent touches will be tracked; touches beyond that will be ignored.
Public propertyModifiers Bit flags describing any pressed modifier keys.
Public propertyPointerType The device type that caused the event.
Public propertyPressure The normalized pressure of the pointer input in the range of [0,1]. Set to 0 if not applicable.
Public propertyRadiusX X radius in pixels. Set to 0 if not applicable.
Public propertyRadiusY Y radius in pixels. Set to 0 if not applicable.
Public propertyRotationAngle Rotation angle in radians. Set to 0 if not applicable.
Public propertyType The state of the touch point. Touches begin with one Pressed event followed by zero or more Moved events and finally one Released or Cancelled event. Events not respecting this order will be ignored.
Public propertyX X coordinate relative to the left side of the view.
Public propertyY Y coordinate relative to the top side of the view.
Top
Methods
 NameDescription
Public methodEqualsIndicates whether this instance and a specified object are equal.
(Inherited from ValueType)
Public methodGetHashCodeReturns the hash code for this instance.
(Inherited from ValueType)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodToStringReturns the fully qualified type name of this instance.
(Inherited from ValueType)
Top
See Also