VisualElement.SetIsShadowEnabled 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
SetIsShadowEnabled(BindableObject, Boolean) |
Sets whether or not the shadow effect is enabled. |
SetIsShadowEnabled(IPlatformElementConfiguration<iOS,VisualElement>, Boolean) |
Sets whether or not the shadow effect is enabled. |
SetIsShadowEnabled(BindableObject, Boolean)
- Source:
- VisualElement.cs
- Source:
- VisualElement.cs
Sets whether or not the shadow effect is enabled.
public:
static void SetIsShadowEnabled(Microsoft::Maui::Controls::BindableObject ^ element, bool value);
public static void SetIsShadowEnabled (Microsoft.Maui.Controls.BindableObject element, bool value);
static member SetIsShadowEnabled : Microsoft.Maui.Controls.BindableObject * bool -> unit
Public Sub SetIsShadowEnabled (element As BindableObject, value As Boolean)
Parameters
- element
- BindableObject
The platform specific element on which to perform the operation.
- value
- Boolean
true
to enable the shadow. Otherwise, false
.
Applies to
SetIsShadowEnabled(IPlatformElementConfiguration<iOS,VisualElement>, Boolean)
- Source:
- VisualElement.cs
- Source:
- VisualElement.cs
Sets whether or not the shadow effect is enabled.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Maui::Controls::IPlatformElementConfiguration<Microsoft::Maui::Controls::PlatformConfiguration::iOS ^, Microsoft::Maui::Controls::VisualElement ^> ^ SetIsShadowEnabled(Microsoft::Maui::Controls::IPlatformElementConfiguration<Microsoft::Maui::Controls::PlatformConfiguration::iOS ^, Microsoft::Maui::Controls::VisualElement ^> ^ config, bool value);
public static Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS,Microsoft.Maui.Controls.VisualElement> SetIsShadowEnabled (this Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS,Microsoft.Maui.Controls.VisualElement> config, bool value);
static member SetIsShadowEnabled : Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS, Microsoft.Maui.Controls.VisualElement> * bool -> Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.iOS, Microsoft.Maui.Controls.VisualElement>
<Extension()>
Public Function SetIsShadowEnabled (config As IPlatformElementConfiguration(Of iOS, VisualElement), value As Boolean) As IPlatformElementConfiguration(Of iOS, VisualElement)
Parameters
The platform specific configuration that contains the element on which to perform the operation.
- value
- Boolean
true
to enable the shadow. Otherwise, false
.
Returns
A fluent object on which the developer may make more method calls.