Class RecordDoubleClickEventArgs<T>
Defines the event arguments of record double click event.
Implements
System.IEquatable<RecordDoubleClickEventArgs<T>>
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class RecordDoubleClickEventArgs<T> : GridEventBaseArgs, IEquatable<RecordDoubleClickEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component |
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 GridColumn Column { get; set; }
Property Value
Type | Description |
---|---|
GridColumn |
ForeignKeyData
Define the foreignKey row data associated with this column
Declaration
public IDictionary<string, IEnumerable<object>> ForeignKeyData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Collections.Generic.IEnumerable<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 current row data.
Declaration
public T RowData { get; set; }
Property Value
Type | Description |
---|---|
T |
RowIndex
Defines the row index.
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>)
Declaration
public bool Equals(RecordDoubleClickEventArgs<T> recordDoubleClickEventArgs)
Parameters
Type | Name | Description |
---|---|---|
RecordDoubleClickEventArgs<T> | recordDoubleClickEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>