Class
BreadcrumbItemClickEventArgs

The class that describes the event arguments of the OnClick event of the Breadcrumb.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class BreadcrumbItemClickEventArgs

Inheritance: objectBreadcrumbItemClickEventArgs

Constructors

BreadcrumbItemClickEventArgs(object)

Declaration

cs-api-definition
public BreadcrumbItemClickEventArgs(object item)

Parameters

item

object

Properties

IsCancelled

Defines whether the event is canceled and the built-in action prevented.

Declaration

cs-api-definition
public bool IsCancelled { get; set; }

Property Value

bool

Item

Defines the item that has been affected. You can cast it to the model type to which you bind the Breadcrumb.

Declaration

cs-api-definition
public object Item { get; protected set; }

Property Value

object