Class PivotCellSelectedEventArgs
The cell selected event arguments provide the necessary information about the pivot cells that have been selected.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class PivotCellSelectedEventArgs
Constructors
PivotCellSelectedEventArgs()
Declaration
public PivotCellSelectedEventArgs()
Properties
Cancel
Defines an option to restrict the cell selection operation.
Declaration
[JsonPropertyName("cancel")]
[Obsolete("This property is deprecated because it is not possible to cancel the selection after the row has been selected.")]
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
CellIndex
Defines the index of the current selected cell.
Declaration
[JsonPropertyName("cellIndex")]
public object CellIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| object | An Object that represents the index of the currently selected cell. |
CellIndexes
Defines the indexes of the current selected/deselected cells.
Declaration
[JsonPropertyName("cellIndexes")]
public object CellIndexes { get; set; }
Property Value
| Type | Description |
|---|---|
| object | An object that represents the indexes of the currently selected or deselected cells. |
Cells
Defines the currently selected/deselected cells.
Declaration
[JsonPropertyName("cells")]
public List<DOM> Cells { get; set; }
Property Value
| Type |
|---|
| List<DOM> |
CurrentCell
Defines the element.
Declaration
[JsonPropertyName("currentCell")]
[Obsolete("This property is deprecated, since we don't pass the DOM elements as an argument")]
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
[JsonPropertyName("currentTarget")]
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
[JsonPropertyName("data")]
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
[JsonPropertyName("isCellClick")]
public bool IsCellClick { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
IsCtrlPressed
Defines whether the CTRL key is pressed or not.
Declaration
[JsonPropertyName("isCtrlPressed")]
public bool IsCtrlPressed { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
IsShiftPressed
Defines whether the SHIFT key is pressed or not.
Declaration
[JsonPropertyName("isShiftPressed")]
public bool IsShiftPressed { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
PivotValues
Defines pivot table cell collections.
Declaration
[JsonPropertyName("pivotValues")]
public Matrix<Matrix<AxisSet>> PivotValues { get; set; }
Property Value
| Type |
|---|
| Matrix<Matrix<AxisSet>> |
PreviousRowCell
Defines the previously selected cell element.
Declaration
[JsonPropertyName("previousRowCell")]
[Obsolete("This property is deprecated because the property name is not proper instead of this use PreviousCellIndex")]
public DOM PreviousRowCell { get; set; }
Property Value
| Type |
|---|
| DOM |
PreviousRowCellIndex
Defines the previously selected cell index.
Declaration
[JsonPropertyName("previousRowCellIndex")]
[Obsolete("This property is deprecated because the property name is not proper instead of this use PreviousCellIndex")]
public double PreviousRowCellIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| double | Accepts the double value. |
SelectedCellsInfo
Defines the collection of selected cells item.
Declaration
[JsonPropertyName("selectedCellsInfo")]
public List<CellSelectedObject> SelectedCellsInfo { get; set; }
Property Value
| Type | Description |
|---|---|
| List<CellSelectedObject> | A list of objects representing the selected cells. |
Target
Defines the cell element that is selected.
Declaration
[JsonPropertyName("target")]
public DOM Target { get; set; }
Property Value
| Type | Description |
|---|---|
| DOM | The DOM element that represents the selected cell. |