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

Provides data for the HyperlinkOpening event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class HyperlinkOpeningEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsHyperlinkOpeningEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

Initializes a new instance of the HyperlinkOpeningEventArgs class.

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

The hyperlink.

rowGridViewRowInfo

The row which contains the hyperlink.

columnGridViewColumn

The column which contains the 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 GridViewRowInfo related with the cell.

C#
public GridViewRowInfo Row { get; }