Exemplo n.º 1
0
 public static Color GetShadowColor(this IPlatformElementConfiguration <iOS, FormsElement> config)
 {
     return(GetShadowColor(config.Element));
 }
Exemplo n.º 2
0
 public static IPlatformElementConfiguration <Android, FormsImageButton> SetShadowColor(this IPlatformElementConfiguration <Android, FormsImageButton> config, Color value)
 {
     SetShadowColor(config.Element, value);
     return(config);
 }
Exemplo n.º 3
0
 public static IPlatformElementConfiguration <Android, FormsImageButton> SetShadowRadius(this IPlatformElementConfiguration <Android, FormsImageButton> config, double value)
 {
     SetShadowRadius(config.Element, value);
     return(config);
 }
Exemplo n.º 4
0
 public static IPlatformElementConfiguration <Tizen, FormsElement> SetFocusedItemScrollPosition(this IPlatformElementConfiguration <Tizen, FormsElement> config, ScrollToPosition position)
 {
     SetFocusedItemScrollPosition(config.Element, position);
     return(config);
 }
Exemplo n.º 5
0
 public static IPlatformElementConfiguration <Android, FormsImageButton> SetIsShadowEnabled(this IPlatformElementConfiguration <Android, FormsImageButton> config, bool value)
 {
     SetIsShadowEnabled(config.Element, value);
     return(config);
 }
Exemplo n.º 6
0
 public static IPlatformElementConfiguration <Tizen, FormsElement> SetFontWeight(this IPlatformElementConfiguration <Tizen, FormsElement> config, string weight)
 {
     SetFontWeight(config.Element, weight);
     return(config);
 }
Exemplo n.º 7
0
 public static IPlatformElementConfiguration <iOS, FormsElement> SetSearchBarStyle(
     this IPlatformElementConfiguration <iOS, FormsElement> config, UISearchBarStyle style)
 {
     SetSearchBarStyle(config.Element, style);
     return(config);
 }
Exemplo n.º 8
0
 public static BlurEffectStyle GetBlurEffect(this IPlatformElementConfiguration <iOS, FormsElement> config)
 {
     return(GetBlurEffect(config.Element));
 }
Exemplo n.º 9
0
 public static bool CanBecomeFirstResponder(this IPlatformElementConfiguration <iOS, FormsElement> config)
 {
     return(GetCanBecomeFirstResponder(config.Element));
 }
Exemplo n.º 10
0
 public static double GetShadowOpacity(this IPlatformElementConfiguration <iOS, FormsElement> config)
 {
     return(GetShadowOpacity(config.Element));
 }
Exemplo n.º 11
0
 public static IPlatformElementConfiguration <iOS, FormsElement> SetShadowOpacity(this IPlatformElementConfiguration <iOS, FormsElement> config, double value)
 {
     SetShadowOpacity(config.Element, value);
     return(config);
 }
Exemplo n.º 12
0
 public static IPlatformElementConfiguration <iOS, FormsElement> SetShadowOffset(this IPlatformElementConfiguration <iOS, FormsElement> config, Size value)
 {
     SetShadowOffset(config.Element, value);
     return(config);
 }
Exemplo n.º 13
0
 public static Size GetShadowOffset(this IPlatformElementConfiguration <iOS, FormsElement> config)
 {
     return(GetShadowOffset(config.Element));
 }
Exemplo n.º 14
0
 public static IPlatformElementConfiguration <iOS, FormsElement> SetShadowColor(this IPlatformElementConfiguration <iOS, FormsElement> config, Color value)
 {
     SetShadowColor(config.Element, value);
     return(config);
 }
Exemplo n.º 15
0
 public static IPlatformElementConfiguration <Android, FormsElement> SetIsLegacyColorModeEnabled(
     this IPlatformElementConfiguration <Android, FormsElement> config, bool value)
 {
     config.Element.SetValue(IsLegacyColorModeEnabledProperty, value);
     return(config);
 }
Exemplo n.º 16
0
 public static IPlatformElementConfiguration <iOS, FormsElement> SetCanBecomeFirstResponder(this IPlatformElementConfiguration <iOS, FormsElement> config, bool value)
 {
     SetCanBecomeFirstResponder(config.Element, value);
     return(config);
 }
Exemplo n.º 17
0
 public static string GetFontWeight(this IPlatformElementConfiguration <Tizen, FormsElement> config)
 {
     return(GetFontWeight(config.Element));
 }
Exemplo n.º 18
0
 public static IPlatformElementConfiguration <iOS, FormsElement> UseBlurEffect(this IPlatformElementConfiguration <iOS, FormsElement> config, BlurEffectStyle value)
 {
     SetBlurEffect(config.Element, value);
     return(config);
 }
Exemplo n.º 19
0
 public static UISearchBarStyle GetSearchBarStyle(this IPlatformElementConfiguration <iOS, FormsElement> config)
 {
     return(GetSearchBarStyle(config.Element));
 }
Exemplo n.º 20
0
 public static bool GetIsShadowEnabled(this IPlatformElementConfiguration <iOS, FormsElement> config)
 {
     return(GetIsShadowEnabled(config.Element));
 }
Exemplo n.º 21
0
 public static ScrollToPosition GetFocusedItemScrollPosition(this IPlatformElementConfiguration <Tizen, FormsElement> config)
 {
     return(GetFocusedItemScrollPosition(config.Element));
 }
Exemplo n.º 22
0
 public static IPlatformElementConfiguration <iOS, FormsElement> SetIsShadowEnabled(this IPlatformElementConfiguration <iOS, FormsElement> config, bool value)
 {
     SetIsShadowEnabled(config.Element, value);
     return(config);
 }
Exemplo n.º 23
0
 public static bool GetIsShadowEnabled(this IPlatformElementConfiguration <Android, FormsImageButton> config)
 {
     return(GetIsShadowEnabled(config.Element));
 }
Exemplo n.º 24
0
 public static float?GetElevation(this IPlatformElementConfiguration <Android, FormsElement> config)
 {
     return(GetElevation(config.Element));
 }
Exemplo n.º 25
0
 public static Color GetShadowColor(this IPlatformElementConfiguration <Android, FormsImageButton> config)
 {
     return(GetShadowColor(config.Element));
 }
Exemplo n.º 26
0
 public static IPlatformElementConfiguration <Android, FormsElement> SetElevation(this IPlatformElementConfiguration <Android, FormsElement> config, float?value)
 {
     SetElevation(config.Element, value);
     return(config);
 }
Exemplo n.º 27
0
 public static double GetShadowRadius(this IPlatformElementConfiguration <Android, FormsImageButton> config)
 {
     return(GetShadowRadius(config.Element));
 }
Exemplo n.º 28
0
 public static bool GetIsLegacyColorModeEnabled(this IPlatformElementConfiguration <Android, FormsElement> config)
 {
     return((bool)config.Element.GetValue(IsLegacyColorModeEnabledProperty));
 }
Exemplo n.º 29
0
 public static Size GetShadowOffset(this IPlatformElementConfiguration <Android, FormsImageButton> config)
 {
     return(GetShadowOffset(config.Element));
 }
Exemplo n.º 30
0
 public static bool DisablePopInteractive(this IPlatformElementConfiguration <iOS, FormsElement> config)
 {
     return(GetDisablePopInteractive(config.Element));
 }