Class ITaskbarClickEventArgs<T>
Defines the event arguments of taskbar click action.
Inheritance
System.Object
ITaskbarClickEventArgs<T>
Implements
System.IEquatable<ITaskbarClickEventArgs<T>>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class ITaskbarClickEventArgs<T> : Object, IEquatable<ITaskbarClickEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T |
Constructors
ITaskbarClickEventArgs()
Declaration
public ITaskbarClickEventArgs()
Properties
Data
Defines the data of record.
Declaration
public IGanttData<T> Data { get; set; }
Property Value
Type | Description |
---|---|
IGanttData<T> |
RowIndex
Defines the row index of record.
Declaration
public double RowIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Target
Defines the target element.
Declaration
public DOM Target { get; set; }
Property Value
Type | Description |
---|---|
DOM |
TaskbarElement
Defines the taskbar element.
Declaration
public DOM TaskbarElement { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Methods
Equals(ITaskbarClickEventArgs<T>)
Returns boolean value by comparing iTaskbarClickEventArgs
Declaration
public bool Equals(ITaskbarClickEventArgs<T> iTaskbarClickEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ITaskbarClickEventArgs<T> | iTaskbarClickEventArgs |
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<>