Class CellHyperlinkOpeningEventArgs
Provides data about the HyperlinkOpening event.
Inherited Members
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class CellHyperlinkOpeningEventArgs : GridCancelEventArgs
Constructors
CellHyperlinkOpeningEventArgs(RowColumnIndex, Object, String, Object)
Initializes a new instance of the CellHyperlinkOpeningEventArgs class.
Declaration
public CellHyperlinkOpeningEventArgs(RowColumnIndex rowColumnIndex, object record, string navigateText, object originalSender)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | rowColumnIndex | RoWColumnIndex of the cell. |
System.Object | record | Record of the corresponding cell. |
System.String | navigateText | Navigate text of the cell. |
System.Object | originalSender | The original reporting source that raised the event. |
Properties
NavigateText
Gets or sets the navigation text when the hyperlink is activated.
Declaration
public string NavigateText { get; set; }
Property Value
Type |
---|
System.String |
Record
Gets the record of the corresponding cell for which navigation occurs.
Declaration
public object Record { get; }
Property Value
Type |
---|
System.Object |
RowColumnIndex
Gets the RowColumnIndex of the corresponding cell for which navigation occurs.
Declaration
public RowColumnIndex RowColumnIndex { get; }
Property Value
Type |
---|
RowColumnIndex |