Class BreadcrumbItem
- Namespace
- MudBlazor
- Assembly
- MudBlazor.dll
Represents a portion of a list of breadcrumbs.
public class BreadcrumbItem
- Inheritance
-
BreadcrumbItem
- Inherited Members
- Extension Methods
Constructors
BreadcrumbItem(string, string?, bool, string?)
Creates a new instance.
public BreadcrumbItem(string text, string? href, bool disabled = false, string? icon = null)
Parameters
text
stringThe text to display for this item.
href
stringThe URL to navigate to when this item is clicked.
disabled
boolWhether the item cannot be clicked.
icon
stringThe custom icon to display for this item.
Properties
Disabled
Prevents this item from being clicked.
public bool Disabled { get; }
Property Value
Href
The URL to navigate to when clicked.
public string? Href { get; }
Property Value
Icon
The custom icon for this item.
public string? Icon { get; }
Property Value
Text
The text to display.
public string Text { get; }