Table of Contents

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 string

The text to display for this item.

href string

The URL to navigate to when this item is clicked.

disabled bool

Whether the item cannot be clicked.

icon string

The custom icon to display for this item.

Properties

Disabled

Prevents this item from being clicked.

public bool Disabled { get; }

Property Value

bool

Href

The URL to navigate to when clicked.

public string? Href { get; }

Property Value

string

Icon

The custom icon for this item.

public string? Icon { get; }

Property Value

string

Text

The text to display.

public string Text { get; }

Property Value

string