Slider.GetUpdateOnTap Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetUpdateOnTap(BindableObject) |
Returns a Boolean value that tells whether tapping on the slider will update its value. |
GetUpdateOnTap(IPlatformElementConfiguration<iOS,Slider>) |
Returns a Boolean value that tells whether tapping on the slider will update its value. |
GetUpdateOnTap(BindableObject)
- Source:
- Slider.cs
- Source:
- Slider.cs
Returns a Boolean value that tells whether tapping on the slider will update its value.
public:
static bool GetUpdateOnTap(Microsoft::Maui::Controls::BindableObject ^ element);
public static bool GetUpdateOnTap (Microsoft.Maui.Controls.BindableObject element);
static member GetUpdateOnTap : Microsoft.Maui.Controls.BindableObject -> bool
Public Function GetUpdateOnTap (element As BindableObject) As Boolean
Parameters
- element
- BindableObject
The element for which to get whether tapping on the slider updates its value.
Returns
true
if tapping updates the value. Otherwise, false
.
Applies to
GetUpdateOnTap(IPlatformElementConfiguration<iOS,Slider>)
- Source:
- Slider.cs
- Source:
- Slider.cs
Returns a Boolean value that tells whether tapping on the slider will update its value.
public:
[System::Runtime::CompilerServices::Extension]
static bool GetUpdateOnTap(Microsoft::Maui::Controls::IPlatformElementConfiguration<Microsoft::Maui::Controls::PlatformConfiguration::iOS ^, Microsoft::Maui::Controls::Slider ^> ^ config);
public static bool GetUpdateOnTap (this Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS,Microsoft.Maui.Controls.Slider> config);
static member GetUpdateOnTap : Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS, Microsoft.Maui.Controls.Slider> -> bool
<Extension()>
Public Function GetUpdateOnTap (config As IPlatformElementConfiguration(Of iOS, Slider)) As Boolean
Parameters
- config
- IPlatformElementConfiguration<iOS,Slider>
The platform configuration for the element for which to get whether tapping on the slider updates its value.
Returns
true
if tapping updates the value. Otherwise, false
.