Provides data for the HyperlinkOpened event.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
public class HyperlinkOpenedEventArgs : EventArgs
Inheritance: objectEventArgsHyperlinkOpenedEventArgs
Inherited Members
Constructors
Initializes a new instance of the HyperlinkOpenedEventArgs class.
C#
public HyperlinkOpenedEventArgs(string hyperlink, GridViewRowInfo row, GridViewColumn column, string error)
The hyperlink.
rowGridViewRowInfoThe row which contains the hyperlink.
columnGridViewColumnThe column which contains the hyperlink.
errorstringAny error occured while trying to open a hyperlink.
Fields
Properties
Gets the GridViewCellInfo related to with this hyperlink belongs.
C#
public GridViewCellInfo Cell { get; }
Gets the GridViewColumn related with the cell.
C#
public GridViewColumn Column { get; }
Gets the GridViewRowInfo related with the cell.
C#
public GridViewRowInfo Row { get; }