Click or drag to resize

InputSynthesizePinchGestureAsync Method

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

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

Parameters

x
Type: SystemInt64
X coordinate of the start of the gesture in CSS pixels.
y
Type: SystemInt64
Y coordinate of the start of the gesture in CSS pixels.
scaleFactor
Type: SystemInt64
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