Class RowDeselectEventArgs<T>
Defines the event arguments of row deselect.
Implements
System.IEquatable<RowDeselectEventArgs<T>>
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class RowDeselectEventArgs<T> : GridEventBaseArgs, IEquatable<RowDeselectEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component |
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 current selected/deselected row data.
Declaration
public T Data { get; set; }
Property Value
Type | Description |
---|---|
T |
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>> |
IsCtrlPressed
Defines whether CTRL key is pressed.
Declaration
public bool IsCtrlPressed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsHeaderCheckboxClicked
Defines whether header checkbox is clicked or not
Declaration
public bool IsHeaderCheckboxClicked { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsInteracted
Defines whether event is triggered by interaction or not.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsShiftPressed
Defines whether SHIFT key is pressed.
Declaration
public bool IsShiftPressed { 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>)
Declaration
public bool Equals(RowDeselectEventArgs<T> rowDeselectEventArgs)
Parameters
Type | Name | Description |
---|---|---|
RowDeselectEventArgs<T> | rowDeselectEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>