TabbedPage.SetHeaderIconsEnabled Method

Definition

Overloads

SetHeaderIconsEnabled(BindableObject, Boolean)

Turns header icons on and off.

SetHeaderIconsEnabled(IPlatformElementConfiguration<Windows,TabbedPage>, Boolean)

Turns header icons on and off.

SetHeaderIconsEnabled(BindableObject, Boolean)

Turns header icons on and off.

public:
 static void SetHeaderIconsEnabled(Microsoft::Maui::Controls::BindableObject ^ element, bool value);
public static void SetHeaderIconsEnabled (Microsoft.Maui.Controls.BindableObject element, bool value);
static member SetHeaderIconsEnabled : Microsoft.Maui.Controls.BindableObject * bool -> unit
Public Sub SetHeaderIconsEnabled (element As BindableObject, value As Boolean)

Parameters

element
BindableObject

The element on which to perform the operation.

value
Boolean

true to enable header icons. false to disable them.

Applies to

SetHeaderIconsEnabled(IPlatformElementConfiguration<Windows,TabbedPage>, Boolean)

Turns header icons on and off.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Maui::Controls::IPlatformElementConfiguration<Microsoft::Maui::Controls::PlatformConfiguration::Windows ^, Microsoft::Maui::Controls::TabbedPage ^> ^ SetHeaderIconsEnabled(Microsoft::Maui::Controls::IPlatformElementConfiguration<Microsoft::Maui::Controls::PlatformConfiguration::Windows ^, Microsoft::Maui::Controls::TabbedPage ^> ^ config, bool value);
public static Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.Windows,Microsoft.Maui.Controls.TabbedPage> SetHeaderIconsEnabled (this Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.Windows,Microsoft.Maui.Controls.TabbedPage> config, bool value);
static member SetHeaderIconsEnabled : Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.Windows, Microsoft.Maui.Controls.TabbedPage> * bool -> Microsoft.Maui.Controls.IPlatformElementConfiguration<Microsoft.Maui.Controls.PlatformConfiguration.Windows, Microsoft.Maui.Controls.TabbedPage>
<Extension()>
Public Function SetHeaderIconsEnabled (config As IPlatformElementConfiguration(Of Windows, TabbedPage), value As Boolean) As IPlatformElementConfiguration(Of Windows, TabbedPage)

Parameters

config
IPlatformElementConfiguration<Windows,TabbedPage>

The platform configuration for the element on which to perform the operation.

value
Boolean

true to enable header icons. false to disable them.

Returns

A fluent object on which the developer may make further method calls.

Applies to