RanorexRanorex Documentation
TouchStart Method (x, y)
NamespacesRanorexAdapterTouchStart(Int32, Int32)
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#
adapter.TouchStart(Location.Left);
adapter.TouchEnd(Location.Right);
Useful multitouch operations always have the form
Declaration Syntax
C#Visual BasicVisual C++
public void TouchStart(
	int x,
	int y
)
Public Sub TouchStart ( _
	x As Integer, _
	y As Integer _
)
public:
void TouchStart(
	int x, 
	int y
)
Parameters
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.

Assembly: Ranorex.Core (Module: Ranorex.Core) Version: 4.0.3.22982 (4.0.3.22982)