Class HyperlinkClickedEventArgs
Provides data for the HyperlinkClicked event.
Inheritance
Namespace: Telerik.Windows.Controls.Spreadsheet.Worksheets.MouseHandlers
Assembly: Telerik.Windows.Controls.Spreadsheet.dll
Syntax
public class HyperlinkClickedEventArgs : EventArgs
Constructors
HyperlinkClickedEventArgs(String, Boolean, CellIndex)
Initializes a new instance of the HyperlinkClickedEventArgs class.
Declaration
public HyperlinkClickedEventArgs(string url, bool isTrustedUrl, CellIndex cellIndex = null)
Parameters
System.String
url
The URL of the hyperlink. |
System.Boolean
isTrustedUrl
A value that indicates if the URL passes our validation. |
Telerik.Windows.Documents.Spreadsheet.Model.CellIndex
cellIndex
Index of the cell. |
Properties
CellIndex
Gets the index of the cell that contains the hyperlink.
Declaration
public CellIndex CellIndex { get; }
Property Value
Telerik.Windows.Documents.Spreadsheet.Model.CellIndex
|
Handled
Get or set a value indicating whether the event is handled.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|
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
public bool IsTrustedUrl { get; set; }
Property Value
System.Boolean
|
Url
The URL of the hyperlink.
Declaration
public string Url { get; }
Property Value
System.String
|