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)
Syntaxpublic Task<DevToolsMethodResponse> SynthesizePinchGestureAsync(
	double x,
	double y,
	double scaleFactor,
	int? relativeSpeed = null,
	GestureSourceType? gestureSourceType = null
)
public:
Task<DevToolsMethodResponse^>^ SynthesizePinchGestureAsync(
	double x, 
	double y, 
	double scaleFactor, 
	Nullable<int> relativeSpeed = nullptr, 
	Nullable<GestureSourceType> gestureSourceType = nullptr
)
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: 
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also