Class CellHyperlinkOpenedEventArgs
Provides data about the HyperlinkOpened event.
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class CellHyperlinkOpenedEventArgs : GridEventArgs
Constructors
CellHyperlinkOpenedEventArgs(RowColumnIndex, Object, String, Object)
Initializes a new instance of the CellHyperlinkOpenedEventArgs class.
Declaration
public CellHyperlinkOpenedEventArgs(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 the navigation text for the activated hyperlink.
Declaration
public string NavigateText { get; }
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 |