Class PivotCellSelectedEventArgs
The cell selected event arguments provide the necessary information about the pivot cells that have been selected.
Inheritance
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class PivotCellSelectedEventArgs : Object
Constructors
PivotCellSelectedEventArgs()
Declaration
public PivotCellSelectedEventArgs()
Properties
Cancel
Defines an option to restrict the cell selection operation.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
CellIndex
Defines the index of the current selected cell.
Declaration
public object CellIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An Object that represents the index of the currently selected cell. |
CellIndexes
Defines the indexes of the current selected/deselected cells.
Declaration
public object CellIndexes { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An object that represents the indexes of the currently selected or deselected cells. |
Cells
Defines the currently selected/deselected cells.
Declaration
public List<DOM> Cells { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<DOM> |
CurrentCell
Defines the element.
Declaration
public DOM CurrentCell { get; set; }
Property Value
Type | Description |
---|---|
DOM | A DOM object that represents the element that represents the current cell. |
CurrentTarget
Defines the cell element that is selected.
Declaration
public DOM CurrentTarget { get; set; }
Property Value
Type | Description |
---|---|
DOM | A DOM object that represents the element that is currently selected. |
Data
Defines the current cell item.
Declaration
public AxisSet Data { get; set; }
Property Value
Type | Description |
---|---|
AxisSet | An AxisSet object that represents the current cell item. |
IsCellClick
Defines the wheather the current cell is clicked of not.
Declaration
public bool IsCellClick { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
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 |
|
PivotValues
Defines pivot table cell collections.
Declaration
public Matrix<Matrix<AxisSet>> PivotValues { get; set; }
Property Value
Type |
---|
Syncfusion.Blazor.PivotView.Matrix<Syncfusion.Blazor.PivotView.Matrix<AxisSet>> |
PreviousRowCell
Defines the previously selected cell element.
Declaration
public DOM PreviousRowCell { get; set; }
Property Value
Type |
---|
DOM |
PreviousRowCellIndex
Defines the previously selected cell index.
Declaration
public double PreviousRowCellIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
SelectedCellsInfo
Defines the collection of selected cells item.
Declaration
public List<CellSelectedObject> SelectedCellsInfo { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<CellSelectedObject> | A list of objects representing the selected cells. |
Target
Defines the cell element that is selected.
Declaration
public DOM Target { get; set; }
Property Value
Type | Description |
---|---|
DOM | The DOM element that represents the selected cell. |