Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

You can use a hyperlink cell to contain text that functions as a single hyperlink.
You can set the color of the hyperlink and change the color after the link has been accessed. You can display text in the cell that is different from the hyperlink. You can also display a tooltip.
Clicking the link opens a new page and navigates to the link URL.

Using Code
The following code creates a hyperlink cell.

JavaScript

Copy Code

var cellType = new GC.Spread.Sheets.CellTypes.HyperLink();cellType.linkColor("blue");cellType.visitedLinkColor("#FF2235");cellType.text("GrapeCity");cellType.linkToolTip("Company Web Site");activeSheet.getCell(1, 1).cellType(cellType).value("http://spread.grapecity.com/");activeSheet.getRange(1, -1, 1, -1).height(30);

 

See Also
HyperLink class
HyperLinkTargetType Enumeration

  • No labels