Class RecordDoubleClickEventArgs<T>
Defines the record double click event arguments.
Inheritance
System.Object
RecordDoubleClickEventArgs<T>
Implements
System.IEquatable<RecordDoubleClickEventArgs<T>>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class RecordDoubleClickEventArgs<T> : Object, IEquatable<RecordDoubleClickEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T |
Constructors
RecordDoubleClickEventArgs()
Declaration
public RecordDoubleClickEventArgs()
Properties
Cell
Defines the cell element.
Declaration
public DOM Cell { get; set; }
Property Value
Type | Description |
---|---|
DOM |
CellIndex
Defines the cell index.
Declaration
public double CellIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Column
Defines the column object.
Declaration
public ColumnModel Column { get; set; }
Property Value
Type | Description |
---|---|
ColumnModel |
ForeignKeyData
Define the foreignKey row data associated with this column
Declaration
public object ForeignKeyData { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Name
Defines the name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Row
Defines the row element.
Declaration
public DOM Row { get; set; }
Property Value
Type | Description |
---|---|
DOM |
RowData
Defines the data of record.
Declaration
public IGanttData<T> RowData { 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 |
Methods
Equals(RecordDoubleClickEventArgs<T>)
Returns boolean value by comparing recordDoubleClickEventArgs
Declaration
public bool Equals(RecordDoubleClickEventArgs<T> recordDoubleClickEventArgs)
Parameters
Type | Name | Description |
---|---|---|
RecordDoubleClickEventArgs<T> | recordDoubleClickEventArgs |
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<>