RanorexRanorex Documentation
TouchStart Method (x, y)
NamespacesRanorexAdapterTouchStart(Double, Double)
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(
	double x,
	double y
)
Public Sub TouchStart ( _
	x As Double, _
	y As Double _
)
public:
void TouchStart(
	double x, 
	double y
)
Parameters
x (Double)
X-Coordinate to click within the element rectangle as percentage (1.0 = 100%). If the value is greater than 1.0 the click will be performed outside the element.
y (Double)
Y-Coordinate to click within the element rectangle as percentage (1.0 = 100%). If the value is greater than 1.0 the click will be performed the element.

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