Class HyperCellClickEventArgs
The hyperlink cell click event arguments provides the necessary information about the cell clicked in the pivot table for hyperlink.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class HyperCellClickEventArgs
Constructors
HyperCellClickEventArgs()
Declaration
public HyperCellClickEventArgs()
Properties
Cancel
Defines an option to restrict the hyperlink cell click operation. By default, the value is in 'true' state.
Declaration
[JsonPropertyName("cancel")]
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
CurrentCell
Defines the cell element that is clicked.
Declaration
[JsonPropertyName("currentCell")]
public DOM CurrentCell { get; set; }
Property Value
| Type |
|---|
| DOM |
Data
Defines the cell item that is clicked.
Declaration
[JsonPropertyName("data")]
public object Data { get; set; }
Property Value
| Type |
|---|
| object |
NativeEvent
Defines the native event properties.
Declaration
[JsonPropertyName("nativeEvent")]
public object NativeEvent { get; set; }
Property Value
| Type | Description |
|---|---|
| object | An object that represents the native event properties of the current event. |