Class HyperCellClickEventArgs
The hyperlink cell click event arguments provides the necessary information about the cell clicked in the pivot table for hyperlink.
Inheritance
System.Object
HyperCellClickEventArgs
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class HyperCellClickEventArgs : Object
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
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
CurrentCell
Defines the cell element that is clicked.
Declaration
public DOM CurrentCell { get; set; }
Property Value
Type |
---|
DOM |
Data
Defines the cell item that is clicked.
Declaration
public object Data { get; set; }
Property Value
Type |
---|
System.Object |
NativeEvent
Defines the native event properties.
Declaration
public object NativeEvent { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An System.Object that represents the native event properties of the current event. |