Class TouchEventArgs
Event information about a touch event.
public class TouchEventArgs : EventArgs
- Inheritance
-
objectTouchEventArgs
- Inherited Members
- Extension Methods
Fields
InRange
The user is hovering above the touch screen.
public bool InRange
Field Value
NoCoalesce
This input was not coalesced.
public bool NoCoalesce
Field Value
Palm
The touch event came from the user's palm.
public bool Palm
Field Value
Primary
Indicates that this structure corresponds to a primary contact point.
public bool Primary
Field Value
Properties
ContactX
X size of the contact area in pixels.
public int ContactX { get; set; }
Property Value
ContactY
X size of the contact area in pixels.
public int ContactY { get; set; }
Property Value
ID
Contact ID.
public int ID { get; set; }
Property Value
LocationX
Touch X client coordinate in pixels.
public int LocationX { get; set; }
Property Value
LocationY
Touch Y client coordinate in pixels.
public int LocationY { get; set; }
Property Value
Mask
Mask indicating which fields in the structure are valid.
public TouchEventMask Mask { get; set; }
Property Value
Time
Touch event time.
public int Time { get; set; }