AndroidApp.PinchToZoomOut Method

Definition

Overloads

PinchToZoomOut(Func<AppQuery,AppQuery>, Nullable<TimeSpan>)

Performs a pinch gestures on the matched element to zoom the view out. If multiple elements are matched, the first one will be used.

PinchToZoomOut(String, Nullable<TimeSpan>)

Performs a pinch gestures on the matched element to zoom the view out. If multiple elements are matched, the first one will be used.

PinchToZoomOut(Func<AppQuery,AppQuery>, Nullable<TimeSpan>)

Performs a pinch gestures on the matched element to zoom the view out. If multiple elements are matched, the first one will be used.

public void PinchToZoomOut (Func<Xamarin.UITest.Queries.AppQuery,Xamarin.UITest.Queries.AppQuery> query, Nullable<TimeSpan> duration = null);
abstract member PinchToZoomOut : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> * Nullable<TimeSpan> -> unit
override this.PinchToZoomOut : Func<Xamarin.UITest.Queries.AppQuery, Xamarin.UITest.Queries.AppQuery> * Nullable<TimeSpan> -> unit
Public Sub PinchToZoomOut (query As Func(Of AppQuery, AppQuery), Optional duration As Nullable(Of TimeSpan) = null)

Parameters

query
Func<AppQuery,AppQuery>

Entry point for the fluent API to specify the element.

duration
Nullable<TimeSpan>

The TimeSpan duration of the pinch gesture.

Implements

Applies to

PinchToZoomOut(String, Nullable<TimeSpan>)

Performs a pinch gestures on the matched element to zoom the view out. If multiple elements are matched, the first one will be used.

public void PinchToZoomOut (string marked, Nullable<TimeSpan> duration = null);
abstract member PinchToZoomOut : string * Nullable<TimeSpan> -> unit
override this.PinchToZoomOut : string * Nullable<TimeSpan> -> unit
Public Sub PinchToZoomOut (marked As String, Optional duration As Nullable(Of TimeSpan) = null)

Parameters

marked
String

Marked selector to match. See Marked(String) for more information.

duration
Nullable<TimeSpan>

The TimeSpan duration of the pinch gesture.

Implements

Applies to