Class ClickEventArgs
Defines the click event arguments of toolbar click action.
Inheritance
System.Object
ClickEventArgs
Implements
System.IEquatable<ClickEventArgs>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class ClickEventArgs : Object, IEquatable<ClickEventArgs>
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 |
Methods
Equals(ClickEventArgs)
Returns boolean value by comparing clickEventArgs
Declaration
public bool Equals(ClickEventArgs clickEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ClickEventArgs | clickEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(Object)
Returns boolean value by comparing object
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type | Description |
---|---|
System.Boolean |
GetHashCode()
Returns hashcode for current object
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Implements
System.IEquatable<>