Class
HyperlinkClickedEventArgs

Provides data for the HyperlinkClicked event.

Definition

Namespace:Telerik.Windows.Controls.Spreadsheet.Worksheets.MouseHandlers

Assembly:Telerik.Windows.Controls.Spreadsheet.dll

Syntax:

cs-api-definition
public class HyperlinkClickedEventArgs : EventArgs

Inheritance: objectEventArgsHyperlinkClickedEventArgs

Inherited Members EventArgs.Empty

Constructors

HyperlinkClickedEventArgs(string, bool, CellIndex)

Initializes a new instance of the HyperlinkClickedEventArgs class.

Declaration

cs-api-definition
public HyperlinkClickedEventArgs(string url, bool isTrustedUrl, CellIndex cellIndex = null)

Parameters

url

string

The URL of the hyperlink.

isTrustedUrl

bool

A value that indicates if the URL passes our validation.

cellIndex

CellIndex

Index of the cell.

Properties

CellIndex

Gets the index of the cell that contains the hyperlink.

Declaration

cs-api-definition
public CellIndex CellIndex { get; }

Property Value

CellIndex

Handled

Get or set a value indicating whether the event is handled.

Declaration

cs-api-definition
public bool Handled { get; set; }

Property Value

bool

IsTrustedUrl

Gets a value tha indicates if the URL passes our validation. If the URL is not trusted, the hyperlink will not be opened. Set this property to true to open the hyperlink.

Declaration

cs-api-definition
public bool IsTrustedUrl { get; set; }

Property Value

bool

Url

The URL of the hyperlink.

Declaration

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

Property Value

string