ListView.SetIsFastScrollEnabled Method

Definition

Overloads

Name Description
SetIsFastScrollEnabled(BindableObject, Boolean)
Obsolete.

Sets whether fast scrolling is enabled in the Android ListView.

SetIsFastScrollEnabled(IPlatformElementConfiguration<Android,ListView>, Boolean)
Obsolete.

Sets whether fast scrolling is enabled in the Android ListView.

SetIsFastScrollEnabled(BindableObject, Boolean)

Source:
ListView.cs
Source:
ListView.cs
Source:
ListView.cs
Source:
ListView.cs

Caution

With the deprecation of ListView, this property is obsolete. Please use CollectionView instead.

Sets whether fast scrolling is enabled in the Android ListView.

public:
 static void SetIsFastScrollEnabled(Microsoft::Maui::Controls::BindableObject ^ element, bool value);
[System.Obsolete("With the deprecation of ListView, this property is obsolete. Please use CollectionView instead.")]
public static void SetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value);
public static void SetIsFastScrollEnabled(Microsoft.Maui.Controls.BindableObject element, bool value);
[<System.Obsolete("With the deprecation of ListView, this property is obsolete. Please use CollectionView instead.")>]
static member SetIsFastScrollEnabled : Microsoft.Maui.Controls.BindableObject * bool -> unit
static member SetIsFastScrollEnabled : Microsoft.Maui.Controls.BindableObject * bool -> unit
Public Sub SetIsFastScrollEnabled (element As BindableObject, value As Boolean)

Parameters

element
BindableObject

The ListView element.

value
Boolean

true to enable fast scroll; otherwise, false.

Attributes

Applies to

SetIsFastScrollEnabled(IPlatformElementConfiguration<Android,ListView>, Boolean)

Source:
ListView.cs
Source:
ListView.cs
Source:
ListView.cs
Source:
ListView.cs

Caution

With the deprecation of ListView, this property is obsolete. Please use CollectionView instead.

Sets whether fast scrolling is enabled in the Android ListView.

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);
[System.Obsolete("With the deprecation of ListView, this property is obsolete. Please use CollectionView instead.")]
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);
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);
[<System.Obsolete("With the deprecation of ListView, this property is obsolete. Please use CollectionView instead.")>]
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>
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 configuration.

value
Boolean

true to enable fast scroll; otherwise, false.

Returns

The platform configuration for fluent API chaining.

Attributes

Applies to