Class HyperlinkOpenedEventArgs
Provides data for the HyperlinkOpened event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class HyperlinkOpenedEventArgs : EventArgs
Constructors
HyperlinkOpenedEventArgs(String, GridViewRowInfo, GridViewColumn, String)
Initializes a new instance of the HyperlinkOpenedEventArgs class.
Declaration
public HyperlinkOpenedEventArgs(string hyperlink, GridViewRowInfo row, GridViewColumn column, string error)
Parameters
System.String
hyperlink
The hyperlink. |
GridViewRowInfo
row
The row which contains the hyperlink. |
GridViewColumn
column
The column which contains the hyperlink. |
System.String
error
Any error occured while trying to open a 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
|
Error
Gets the error.
Declaration
public string Error { get; }
Property Value
System.String
The error. |
Row
Gets the GridViewRowInfo related with the cell.
Declaration
public GridViewRowInfo Row { get; }
Property Value
GridViewRowInfo
|