NavigationPage.SetHideNavigationBarSeparator 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
SetHideNavigationBarSeparator(BindableObject, Boolean) |
Developers set this to |
SetHideNavigationBarSeparator(IPlatformElementConfiguration<iOS,NavigationPage>, Boolean) |
Developers set this to |
SetHideNavigationBarSeparator(BindableObject, Boolean)
- Source:
- NavigationPage.cs
- Source:
- NavigationPage.cs
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)
- Source:
- NavigationPage.cs
- Source:
- NavigationPage.cs
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
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.