Class ClickEventArgs
A class that holds options to control the toolbar clicked action.
Inheritance
System.Object
ClickEventArgs
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class ClickEventArgs : Object
Constructors
ClickEventArgs()
Declaration
public ClickEventArgs()
Properties
Cancel
Defines the prevent action.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Item
Defines the current Toolbar Item Object.
Declaration
public ItemModel Item { get; set; }
Property Value
Type | Description |
---|---|
ItemModel |
Name
Specifies name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OriginalEvent
Defines the current Event arguments.
Declaration
public MouseEventArgs OriginalEvent { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Web.MouseEventArgs |