Class
HyperlinkOpenedEventArgs

Provides data for the HyperlinkOpened event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class HyperlinkOpenedEventArgs : EventArgs

Inheritance: objectEventArgsHyperlinkOpenedEventArgs

Inherited Members EventArgs.Empty

Constructors

HyperlinkOpenedEventArgs(string, GridViewRowInfo, GridViewColumn, string)

Initializes a new instance of the HyperlinkOpenedEventArgs class.

Declaration

cs-api-definition
public HyperlinkOpenedEventArgs(string hyperlink, GridViewRowInfo row, GridViewColumn column, string error)

Parameters

hyperlink

string

The hyperlink.

row

GridViewRowInfo

The row which contains the hyperlink.

column

GridViewColumn

The column which contains the hyperlink.

error

string

Any error occured while trying to open a hyperlink.

Fields

Gets the hyperlink.

Declaration

cs-api-definition
public readonly string Hyperlink

Field Value

string

Properties

Cell

Gets the GridViewCellInfo related to with this hyperlink belongs.

Declaration

cs-api-definition
public GridViewCellInfo Cell { get; }

Property Value

GridViewCellInfo

Column

Gets the GridViewColumn related with the cell.

Declaration

cs-api-definition
public GridViewColumn Column { get; }

Property Value

GridViewColumn

Error

Gets the error.

Declaration

cs-api-definition
public string Error { get; }

Property Value

string

The error.

Row

Gets the GridViewRowInfo related with the cell.

Declaration

cs-api-definition
public GridViewRowInfo Row { get; }

Property Value

GridViewRowInfo