summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/PlatformConfiguration/AndroidSpecific/TabbedPage.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/PlatformConfiguration/AndroidSpecific/TabbedPage.cs')
-rw-r--r--Xamarin.Forms.Core/PlatformConfiguration/AndroidSpecific/TabbedPage.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Xamarin.Forms.Core/PlatformConfiguration/AndroidSpecific/TabbedPage.cs b/Xamarin.Forms.Core/PlatformConfiguration/AndroidSpecific/TabbedPage.cs
index 5cec97eb..dc4d1e1a 100644
--- a/Xamarin.Forms.Core/PlatformConfiguration/AndroidSpecific/TabbedPage.cs
+++ b/Xamarin.Forms.Core/PlatformConfiguration/AndroidSpecific/TabbedPage.cs
@@ -45,24 +45,24 @@
BindableProperty.Create("OffscreenPageLimit", typeof(int),
typeof(TabbedPage), 3, validateValue: (binding, value) => (int)value >= 0);
- public static int GetOffscreenPageLimitProperty(BindableObject element)
+ public static int GetOffscreenPageLimit(BindableObject element)
{
return (int)element.GetValue(OffscreenPageLimitProperty);
}
- public static void SetOffscreenPageLimitProperty(BindableObject element, int value)
+ public static void SetOffscreenPageLimit(BindableObject element, int value)
{
element.SetValue(OffscreenPageLimitProperty, value);
}
public static int OffscreenPageLimit(this IPlatformElementConfiguration<Android, FormsElement> config)
{
- return GetOffscreenPageLimitProperty(config.Element);
+ return GetOffscreenPageLimit(config.Element);
}
- public static IPlatformElementConfiguration<Android, FormsElement> SetOffscreenPageLimitProperty(this IPlatformElementConfiguration<Android, FormsElement> config, int value)
+ public static IPlatformElementConfiguration<Android, FormsElement> SetOffscreenPageLimit(this IPlatformElementConfiguration<Android, FormsElement> config, int value)
{
- SetOffscreenPageLimitProperty(config.Element, value);
+ SetOffscreenPageLimit(config.Element, value);
return config;
}
}