FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.CellType Namespace > HyperLinkCellType Class : Links Property |
'Declaration Public Property Links As String()
'Usage Dim instance As HyperLinkCellType Dim value() As String instance.Links = value value = instance.Links
public string[] Links {get; set;}
Refer to the Link example to understand how to specify an individual hyperlink.
For multiple hyperlinks in one text string, use the LinkAreas property along with this one. This property allows multiple destination URLs, one for each hyperlink.
The destination may be a Web site URL, as in http://www.fpoint.com, or it may be an email link, as in mailto:fpdocs@fpoint.com. Any valid URL should work.
FarPoint.Win.Spread.CellType.HyperLinkCellType mhp = new FarPoint.Win.Spread.CellType.HyperLinkCellType(); mhp.Text = "Visit our main site or our tech support site."; string[] s = new string[]{"www.fpoint.com", "www.clubfarpoint.com"}; mhp.Links = s; LinkArea[] la = new LinkArea[]{new LinkArea(10, 9), new LinkArea(27, 17)}; mhp.LinkAreas = la; fpSpread1.ActiveSheet.Columns[1].Width = 220; fpSpread1.ActiveSheet.Cells[0, 0].CellType = mhp;
Dim mhp As New FarPoint.Win.Spread.CellType.HyperLinkCellType mhp.Text = "Visit our main site or our tech support site." Dim s() As String = New String() {"www.fpoint.com", "www.clubfarpoint.com"} mhp.Links = s Dim la() As LinkArea = New LinkArea() {New LinkArea(10, 9), New LinkArea(27, 17)} mhp.LinkAreas = la FpSpread1.ActiveSheet.Columns(1).Width = 220 FpSpread1.ActiveSheet.Cells(0, 0).CellType = mhp
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10