Class CellSelectingEventArgs<T>
Class that defines event argument of the cell selection operation.
Implements
System.IEquatable<CellSelectingEventArgs<T>>
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class CellSelectingEventArgs<T> : GridEventBaseArgs, IEquatable<CellSelectingEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component |
Constructors
CellSelectingEventArgs()
Declaration
public CellSelectingEventArgs()
Properties
Cancel
Defines the cancel option value.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CellIndex
Defines the index of the current selected cell.
Declaration
public double CellIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Cells
Defines the currently selected/deselected cells.
Declaration
public List<DOM> Cells { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<DOM> |
CurrentCell
Defines the element.
Declaration
public DOM CurrentCell { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Data
Defines the currently selected/deselected row data.
Declaration
public T Data { get; set; }
Property Value
Type | Description |
---|---|
T |
IsCtrlPressed
Defines whether the CTRL key is pressed or not.
Declaration
public bool IsCtrlPressed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsShiftPressed
Defines whether the SHIFT key is pressed or not.
Declaration
public bool IsShiftPressed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
PreviousRowCell
Defines the previously selected cell element.
Declaration
public DOM PreviousRowCell { get; set; }
Property Value
Type | Description |
---|---|
DOM |
PreviousRowCellIndex
Defines the previously selected cell index.
Declaration
public double PreviousRowCellIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
RowIndex
Defines the row index of the current selected cell.
Declaration
public double RowIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(CellSelectingEventArgs<T>)
Declaration
public bool Equals(CellSelectingEventArgs<T> cellSelectingEventArgs)
Parameters
Type | Name | Description |
---|---|---|
CellSelectingEventArgs<T> | cellSelectingEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>