Share via


ListView.SetIsFastScrollEnabled Method

Definition

Overloads

SetIsFastScrollEnabled(BindableObject, Boolean)
Obsolete.

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

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

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

SetIsFastScrollEnabled(BindableObject, Boolean)

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

Caution

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

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

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 platform specific element on which to perform the operation.

value
Boolean

The new property value to assign.

Attributes

Applies to

SetIsFastScrollEnabled(IPlatformElementConfiguration<Android,ListView>, Boolean)

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

Caution

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

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);
[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 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.

Attributes

Applies to