Class ClickEventArgs
Provides information about the clicked item in toolbar.
Inheritance
System.Object
ClickEventArgs
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class ClickEventArgs : Object
Constructors
ClickEventArgs()
Declaration
public ClickEventArgs()
Properties
Cancel
Gets or sets whether the item click action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Item
Gets the clicked ItemModel of toolbar.
Declaration
public ItemModel Item { get; }
Property Value
Type | Description |
---|---|
ItemModel | A ItemModel object that represents the item that was clicked in the toolbar. |
Name
Gets name of the event.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
OriginalEvent
Gets the mouse event informations.
Declaration
public MouseEventArgs OriginalEvent { get; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Web.MouseEventArgs | A MouseEventArgs object that represents the mouse event information. |