New to Telerik UI for WinFormsStart a free 30-day trial

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 EventArgs.Empty

Constructors

Initializes a new instance of the HyperlinkOpenedEventArgs class.

C#
public HyperlinkOpenedEventArgs(string hyperlink, GridViewRowInfo row, GridViewColumn column, string error)
Parameters:hyperlinkstring

The hyperlink.

rowGridViewRowInfo

The row which contains the hyperlink.

columnGridViewColumn

The column which contains the hyperlink.

errorstring

Any error occured while trying to open a hyperlink.

Fields

Gets the hyperlink.

C#
public readonly string Hyperlink

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 error.

C#
public string Error { get; }
Property Value:

The error.

Gets the GridViewRowInfo related with the cell.

C#
public GridViewRowInfo Row { get; }