Class BreadcrumbItemClickEventArgs
The class that describes the event arguments of the OnClick event of the Breadcrumb.
Inheritance
System.Object
BreadcrumbItemClickEventArgs
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class BreadcrumbItemClickEventArgs : Object
Constructors
BreadcrumbItemClickEventArgs(Object)
Declaration
public BreadcrumbItemClickEventArgs(object item)
Parameters
System.Object
item
|
Properties
IsCancelled
Defines whether the event is canceled and the built-in action prevented.
Declaration
public bool IsCancelled { get; set; }
Property Value
System.Boolean
|
Item
Defines the item that has been affected. You can cast it to the model type to which you bind the Breadcrumb.
Declaration
public object Item { get; protected set; }
Property Value
System.Object
|