Share via


ListView.SetIsFastScrollEnabled Method

Definition

Overloads

SetIsFastScrollEnabled(BindableObject, Boolean)

Sets the attached property that controls whether fast scrolling is enabled.

SetIsFastScrollEnabled(IPlatformElementConfiguration<Android,ListView>, Boolean)

Sets the attached property that controls whether fast scrolling is enabled.

SetIsFastScrollEnabled(BindableObject, Boolean)

Source:
ListView.cs
Source:
ListView.cs

Sets the attached property that controls whether fast scrolling is enabled.

public:
 static void SetIsFastScrollEnabled(Microsoft::Maui::Controls::BindableObject ^ element, bool value);
public static void SetIsFastScrollEnabled (Microsoft.Maui.Controls.BindableObject element, bool value);
static member SetIsFastScrollEnabled : Microsoft.Maui.Controls.BindableObject * bool -> unit
Public Sub SetIsFastScrollEnabled (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

SetIsFastScrollEnabled(IPlatformElementConfiguration<Android,ListView>, Boolean)

Source:
ListView.cs
Source:
ListView.cs

Sets the attached property that controls whether fast scrolling is enabled.

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

Parameters

config
IPlatformElementConfiguration<Android,ListView>

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