HyperlinkInfo
Immutable descriptor for hyperlink targets, including URL, email, and in-document addresses with optional screen tips.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Model
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class HyperlinkInfo
Inheritance: objectHyperlinkInfo
Methods
Creates a hyperlink navigating to a worksheet location within the same workbook (e.g., "Sheet1!A1:B5").
Creates an email hyperlink with the specified address, subject line, and screen tip.
Creates an email hyperlink for the specified address.
public static HyperlinkInfo CreateMailtoHyperlink(string emailAddress)
The email address.
Returns:The hyperlink information.
Properties
Gets the primary target address (URL, email address, or empty for in-document links).
public string Address { get; }
The address.
Gets the email subject line used when Type is Mailto.
public string EmailSubject { get; }
The email subject.
Gets the tooltip text displayed when hovering over the hyperlink.
public string ScreenTip { get; }
The screen tip.
Gets the in-document target (sheet name and range) used when Type is InDocument.
public string SubAddress { get; }
The sub address.
Gets the hyperlink category (Url, Mailto, or InDocument).
public HyperlinkType Type { get; }
The type.