Class HyperlinkCellClickEventArgs
Class containing event data, related to click operation in hyperlink cell in PivotGrid.
Inheritance
System.Object
HyperlinkCellClickEventArgs
Namespace: Syncfusion.Windows.Controls.PivotGrid
Assembly: Syncfusion.PivotAnalysis.WPF.dll
Syntax
public class HyperlinkCellClickEventArgs : EventArgs
Constructors
HyperlinkCellClickEventArgs(PivotCellInfo)
This method handles the click event of the hyperlink cell.
Declaration
public HyperlinkCellClickEventArgs(PivotCellInfo PivotCellInfo)
Parameters
| Type | Name | Description |
|---|---|---|
| PivotCellInfo | PivotCellInfo | The Pivot cell information. |
HyperlinkCellClickEventArgs(PivotCellInfo, RowColumnIndex, MouseButtonEventArgs)
This method handles the click event of the hyperlink cell.
Declaration
public HyperlinkCellClickEventArgs(PivotCellInfo PivotCellInfo, RowColumnIndex cellRowColumnIndex, MouseButtonEventArgs e)
Parameters
| Type | Name | Description |
|---|---|---|
| PivotCellInfo | PivotCellInfo | The Pivot cell information. |
| RowColumnIndex | cellRowColumnIndex | The RowColumnIndex of the cell. |
| System.Windows.Input.MouseButtonEventArgs | e | The MouseButtonEventArgs of the clicked cell. |
Properties
MouseButtonArgs
Gets the MouseButtonEventArgs of the clicked cell.
Declaration
public MouseButtonEventArgs MouseButtonArgs { get; }
Property Value
| Type | Description |
|---|---|
| System.Windows.Input.MouseButtonEventArgs | The MouseButtonEventArgs value. |
PivotCellInfo
Gets or sets the cell information.
Declaration
public PivotCellInfo PivotCellInfo { get; set; }
Property Value
| Type | Description |
|---|---|
| PivotCellInfo | The cell information. |
RowColumnIndex
Gets the RowColumnIndex of the clicked cell.
Declaration
public RowColumnIndex RowColumnIndex { get; }
Property Value
| Type | Description |
|---|---|
| RowColumnIndex | The RowColumnIndex value. |