Class HyperlinkOpeningEventArgs
Provides data for the HyperlinkOpening event.
Inheritance
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class HyperlinkOpeningEventArgs : CancelEventArgs
Constructors
HyperlinkOpeningEventArgs(String, GridViewRowInfo, GridViewColumn)
Initializes a new instance of the HyperlinkOpeningEventArgs class.
Declaration
public HyperlinkOpeningEventArgs(string hyperlink, GridViewRowInfo row, GridViewColumn column)
Parameters
System.String
hyperlink
The hyperlink. |
GridViewRowInfo
row
The row which contains the hyperlink. |
GridViewColumn
column
The column which contains the hyperlink. |
Fields
Hyperlink
Gets the hyperlink.
Declaration
public readonly string Hyperlink
Field Value
System.String
|
Properties
Cell
Gets the GridViewCellInfo related to with this hyperlink belongs.
Declaration
public GridViewCellInfo Cell { get; }
Property Value
GridViewCellInfo
|
Column
Gets the GridViewColumn related with the cell.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
|
Row
Gets the GridViewRowInfo related with the cell.
Declaration
public GridViewRowInfo Row { get; }
Property Value
GridViewRowInfo
|