Begins a multi touch operation on the adapter. Multi touch operations can be used to compose more complex touch gestures.
E.g. a swipe from left to right could be composed in the following way:
CopyC#
Useful multitouch operations always have the form
adapter.TouchStart(Location.Left); adapter.TouchEnd(Location.Right);
- 1 TouchStart
- 0-N TouchMove
- 1 TouchEnd
- x (Int32)
- X-Coordinate to click within the element rectangle in pixels. If the value is greater than the width of the element the touch will be performed outside the element.
- y (Int32)
- Y-Coordinate to click within the element rectangle in pixels. If the value is greater than the height of the element the touch will be performed outside the element.
