Click or drag to resize

InputClientSynthesizePinchGestureAsync Method

Version 94.4.20
Synthesizes a pinch gesture over a time period by issuing appropriate touch events.

Namespace:  CefSharp.DevTools.Input
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public Task<DevToolsMethodResponse> SynthesizePinchGestureAsync(
	double x,
	double y,
	double scaleFactor,
	int? relativeSpeed = null,
	GestureSourceType? gestureSourceType = null
)

Parameters

x
Type: SystemDouble
X coordinate of the start of the gesture in CSS pixels.
y
Type: SystemDouble
Y coordinate of the start of the gesture in CSS pixels.
scaleFactor
Type: SystemDouble
Relative scale factor after zooming (>1.0 zooms in, <1.0 zooms out).
relativeSpeed (Optional)
Type: SystemNullableInt32
Relative pointer speed in pixels per second (default: 800).
gestureSourceType (Optional)
Type: SystemNullableGestureSourceType
Which type of input events to be generated (default: 'default', which queries the platformfor the preferred input type).

Return Value

Type: TaskDevToolsMethodResponse
returns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also