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 |
CellIndexes
Defines the indexes of the current selected/deselected cells.
Declaration
public object CellIndexes { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
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 |
CurrentTarget
Defines the cell element that is selected.
Declaration
public DOM CurrentTarget { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Data
Defines the current cell item.
Declaration
public AxisSet Data { get; set; }
Property Value
Type | Description |
---|---|
AxisSet |
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 | Description |
---|---|
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 | Description |
---|---|
DOM |
PreviousRowCellIndex
Defines the previously selected cell index.
Declaration
public double PreviousRowCellIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
SelectedCellsInfo
Defines the collection of selected cells item.
Declaration
public List<CellSelectedObject> SelectedCellsInfo { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<CellSelectedObject> |
Target
Defines the cell element that is selected.
Declaration
public DOM Target { get; set; }
Property Value
Type | Description |
---|---|
DOM |