ScrollView.SetShouldDelayContentTouches Method

Definition

Overloads

SetShouldDelayContentTouches(BindableObject, Boolean)

Sets a Boolean value that tells whether iOS will wait to determine if a touch is intended as a scroll, or scroll immediately.

SetShouldDelayContentTouches(IPlatformElementConfiguration<iOS,ScrollView>, Boolean)

Sets a Boolean value that tells whether iOS will wait to determine if a touch is intended as a scroll, or scroll immediately.

SetShouldDelayContentTouches(BindableObject, Boolean)

Sets a Boolean value that tells whether iOS will wait to determine if a touch is intended as a scroll, or scroll immediately.

public:
 static void SetShouldDelayContentTouches(Microsoft::Maui::Controls::BindableObject ^ element, bool value);
public static void SetShouldDelayContentTouches (Microsoft.Maui.Controls.BindableObject element, bool value);
static member SetShouldDelayContentTouches : Microsoft.Maui.Controls.BindableObject * bool -> unit
Public Sub SetShouldDelayContentTouches (element As BindableObject, value As Boolean)

Parameters

element
BindableObject

The platform specific element on which to perform the operation.

value
Boolean

The new property value to assign.

Applies to

SetShouldDelayContentTouches(IPlatformElementConfiguration<iOS,ScrollView>, Boolean)

Sets a Boolean value that tells whether iOS will wait to determine if a touch is intended as a scroll, or scroll immediately.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Maui::Controls::IPlatformElementConfiguration<Microsoft::Maui::Controls::PlatformConfiguration::iOS ^, Microsoft::Maui::Controls::ScrollView ^> ^ SetShouldDelayContentTouches(Microsoft::Maui::Controls::IPlatformElementConfiguration<Microsoft::Maui::Controls::PlatformConfiguration::iOS ^, Microsoft::Maui::Controls::ScrollView ^> ^ config, bool value);
public static Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS,Microsoft.Maui.Controls.ScrollView> SetShouldDelayContentTouches (this Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS,Microsoft.Maui.Controls.ScrollView> config, bool value);
static member SetShouldDelayContentTouches : Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS, Microsoft.Maui.Controls.ScrollView> * bool -> Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS, Microsoft.Maui.Controls.ScrollView>
<Extension()>
Public Function SetShouldDelayContentTouches (config As IPlatformElementConfiguration(Of iOS, ScrollView), value As Boolean) As IPlatformElementConfiguration(Of iOS, ScrollView)

Parameters

config
IPlatformElementConfiguration<iOS,ScrollView>

The platform specific configuration that contains the element on which to perform the operation.

value
Boolean

The new property value to assign.

Returns

The updated configuration object, on which more methods may be called.

Applies to