Class BreadcrumbOverflowMode
Specifies how to display Breadcrumb items in SfBreadcrumb component when the Breadcrumb items exceeds Breadcrumb container or MaxItems property.
Inheritance
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class BreadcrumbOverflowMode : Enum
Fields
Collapsed
Only the first and last items will be visible, and the remaining items will be hidden with collapsed icon. When the collapsed icon is clicked, all items become visible and scroll will be enabled if the space is not enough to show all items.
Declaration
public const BreadcrumbOverflowMode Collapsed
Field Value
Type |
---|
BreadcrumbOverflowMode |
Hidden
The specified MaxItems count will be visible and the remaining items will be hidden. While clicking on the previous item, the hidden item will become visible.
Declaration
public const BreadcrumbOverflowMode Hidden
Field Value
Type |
---|
BreadcrumbOverflowMode |
Menu
Shows the number of Breadcrumb items that can be accommodated within the container space, and creates a sub menu with the remaining items.
Declaration
public const BreadcrumbOverflowMode Menu
Field Value
Type |
---|
BreadcrumbOverflowMode |
None
Shows all the items on a single line.
Declaration
public const BreadcrumbOverflowMode None
Field Value
Type |
---|
BreadcrumbOverflowMode |
Scroll
Shows an HTML scroll bar when the Breadcrumb’s width exceeds the container space.
Declaration
public const BreadcrumbOverflowMode Scroll
Field Value
Type |
---|
BreadcrumbOverflowMode |
Wrap
Wraps the items on multiple lines when the Breadcrumb’s width exceeds the container space.
Declaration
public const BreadcrumbOverflowMode Wrap
Field Value
Type |
---|
BreadcrumbOverflowMode |