NavigationPage.SetHideNavigationBarSeparator Method

Definition

Overloads

SetHideNavigationBarSeparator(BindableObject, Boolean)

Developers set this to true to hide the separator. Otherwise, false.

SetHideNavigationBarSeparator(IPlatformElementConfiguration<iOS,NavigationPage>, Boolean)

Developers set this to true to hide the separator. Otherwise, false.

SetHideNavigationBarSeparator(BindableObject, Boolean)

Developers set this to true to hide the separator. Otherwise, false.

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

Parameters

element
BindableObject

The element for which to set whether the navigation bar separator is hidden.

value
Boolean

true to hide the separator. Otherwise, false.

Applies to

SetHideNavigationBarSeparator(IPlatformElementConfiguration<iOS,NavigationPage>, Boolean)

Developers set this to true to hide the separator. Otherwise, false.

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

Parameters

config
IPlatformElementConfiguration<iOS,NavigationPage>

The platform configuration for the element for which to set whether the navigation bar separator is hidden.

value
Boolean

true to hide the separator. Otherwise, false.

Returns

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

Applies to