VisualElement.SetIsShadowEnabled Method

Definition

Overloads

SetIsShadowEnabled(BindableObject, Boolean)

Sets a Boolean value that controls whether the shadow effect is enabled.

SetIsShadowEnabled(IPlatformElementConfiguration<iOS,VisualElement>, Boolean)

Sets a Boolean value that controls whether the shadow effect is enabled.

SetIsShadowEnabled(BindableObject, Boolean)

Sets a Boolean value that controls whether 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)

Sets a Boolean value that controls whether 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

config
IPlatformElementConfiguration<iOS,VisualElement>

The platform specific configuration that contains the element on which to perform the operation.

value
Boolean

true to enable the shadow. Otherwise, false.

Returns

The updated configuration object on which developers can make successive method calls.

Applies to