How to insert an Hyperlink in a cell for WF XlsIO?
Hyperlinks can be inserted using the Hyperlink formula. Please refer the below code snippet which illustrates this:
C#
IHyperLink hyperlink = sheet.HyperLinks.Add(sheet.Range["C5"]); hyperlink.Type = ExcelHyperLinkType.Url; hyperlink.Address = "http://www.syncfusion.com"; hyperlink.ScreenTip = "To know more About SYNCFUSION PRODUCTS ";
VB
Dim hyperlink As IHyperLink= sheet.HyperLinks.Add(sheet.Range("C5")) hyperlink.Type = ExcelHyperLinkType.Url hyperlink.Address = "http://www.Syncfusion.com"
Conclusion
I hope you enjoyed learning about how to insert an Hyperlink in a cell for WF XlsIO.
You can refer to our XIsIO feature tour page to know about its other groundbreaking feature representations. You can also explore our documentation to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!