Class RowDeselectEventArgs<T>
Defines the row deselected event arguments.
Inheritance
System.Object
RowDeselectEventArgs<T>
Implements
System.IEquatable<RowDeselectEventArgs<T>>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class RowDeselectEventArgs<T> : Object, IEquatable<RowDeselectEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T |
Constructors
RowDeselectEventArgs()
Declaration
public RowDeselectEventArgs()
Properties
Cancel
Defines the cancel option value.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Data
Defines the data collections.
Declaration
public IGanttData<T> Data { get; set; }
Property Value
Type | Description |
---|---|
IGanttData<T> |
ForeignKeyData
Define the foreignKey row data associated with this column
Declaration
public object ForeignKeyData { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
IsInteracted
Defines whether event is triggered by interaction or not.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Row
Defines the selected/deselected row.
Declaration
public DOM Row { get; set; }
Property Value
Type | Description |
---|---|
DOM |
RowIndex
Defines the selected/deselected row index.
Declaration
public double RowIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Target
Defines the target element for row deselect.
Declaration
public DOM Target { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Methods
Equals(RowDeselectEventArgs<T>)
Returns boolean value by comparing rowDeselectEventArgs
Declaration
public bool Equals(RowDeselectEventArgs<T> rowDeselectEventArgs)
Parameters
Type | Name | Description |
---|---|---|
RowDeselectEventArgs<T> | rowDeselectEventArgs |
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<>